|
|
Line 13: |
Line 13: |
| } ) | | } ) |
| } | | } |
|
| |
| /* For map page */
| |
| if (mw.config.get('wgPageName') === 'Zone_Map') {
| |
|
| |
| /* Scroll to the active cell on the Zone Map */
| |
| document.getElementById('active').scrollIntoView({
| |
| behavior: 'auto',
| |
| block: 'center',
| |
| inline: 'center'
| |
| });
| |
|
| |
| /* fullscreen icon */
| |
| $('#fullscreeninput').on('click', function(){
| |
| // if already full screen; exit
| |
| // else go fullscreen
| |
| if (document.fullscreenElement) {
| |
| document.exitFullscreen();
| |
| } else {
| |
| $('#zonemap').get(0).requestFullscreen();
| |
| }
| |
| });
| |
|
| |
| /* my location icon */
| |
| $('#mylocation').on('click', function(){
| |
| document.getElementById('active').scrollIntoView({
| |
| behavior: 'auto',
| |
| block: 'center',
| |
| inline: 'center'
| |
| });
| |
| });
| |
|
| |
| /* add zoomslider */
| |
| document.getElementById('zoominput').innerHTML = '<input id="zoomslider" min="0.3" max="2" value="1" step="0.1" type="range"/>';
| |
| $('#zoomslider').on("change mousemove", function() {
| |
| $(".gridmap").css("zoom", $(this).val());
| |
| });
| |
|
| |
| /* add zoomreset */
| |
| $('#resetzoom').on('click', function(){
| |
| $("#zoomslider").val(1);
| |
| $(".gridmap").css("zoom", 1);
| |
| });
| |
| }
| |
|
| |
|
| |
|
| |
| if (mw.config.get('wgPageName') === 'Ark_Projects') {
| |
| jQuery( document ).ready( function( $ ) {
| |
| // wrapped in "mw.loader.using" so this doesn't execute until Tablesorter has loaded
| |
| mw.loader.using( 'jquery.tablesorter', function() {
| |
| $('table.sortable').tablesorter( {sortList: [ { 1: 'desc'} ]} )
| |
| } );
| |
| } );
| |
| }
| |
|
| |
|
| |
| //if (mw.config.get('wgPageName') === "Octavia's_Notebook") {
| |
| // $(".notebookpages .notebook.paper").first().addClass("active");
| |
|
| |
| /* First button */
| |
| // $('.notebookpages .first').on('click', function() {
| |
| // $(".notebookpages .active").removeClass("active");
| |
| // $(".notebookpages .notebook.paper").first().addClass("active");
| |
| // });
| |
|
| |
| /* Last button */
| |
| // $('.notebookpages .last').on('click', function() {
| |
| // $(".notebookpages .active").removeClass("active");
| |
| // $(".notebookpages .notebook.paper").last().addClass("active");
| |
| // });
| |
|
| |
| /* Next button */
| |
| // $('.notebookpages .next').on('click', function() {
| |
| // if (!$(".notebookpages .notebook.paper").last().hasClass('active')) {
| |
| // $(".notebookpages .active").removeClass("active").next(".notebook.paper").addClass("active");
| |
| // $('.notebookpages .prev').removeClass("disabled");
| |
| // } else {
| |
| // $('.notebookpages .next').addClass("disabled");
| |
| // }
| |
| // });
| |
|
| |
| /* Previous button */
| |
| // $('.notebookpages .prev').on('click', function() {
| |
| // if (!$(".notebookpages .notebook.paper").first().hasClass('active')) {
| |
| // $(".notebookpages .active").removeClass("active").prev(".notebook.paper").addClass("active");
| |
| // $('.notebookpages .next').removeClass("disabled");
| |
| // } else {
| |
| // $('.notebookpages .prev').addClass("disabled");
| |
| // }
| |
| // });
| |
| //}
| |