Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name TagPro Fullscreen Button
- // @version 0.1
- // @include http://tagpro-*.koalabeast.com:*
- // @include http://tangent.jukejuice.com:*
- // @include http://*.newcompte.fr:*
- // @grant none
- // ==/UserScript==
- tagpro.ready(function() {
- $('body').append('<button id="fullscreen1" onclick="actFullscreen()" style="position: absolute; left: 10px; top: 40px;">Fullscreen</button>');
- $('#name').after('<button id="fullscreen1" onclick="actFullscreen()" style="margin-left: 50px;">Fullscreen</button>');
- window.actFullscreen = function()
- {
- if (document.fullscreenElement || document.webkitFullscreenElement || document.mozFullScreenElement || document.msFullscreenElement)
- {
- var exitMethod = document.exitFullscreen || document.webkitExitFullscreen || document.mozCancelFullScreen || document.msExitFullscreen;
- if(exitMethod)
- exitMethod.call(document);
- }
- else
- {
- var bod = document.body,
- fullscreenMethod = bod.requestFullscreen || bod.webkitRequestFullscreen || bod.mozRequestFullScreen || bod.msRequestFullscreen;
- if(fullscreenMethod)
- fullscreenMethod.call(bod);
- }
- }
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement