X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/b5f8d214ba00903379f8716ef563f19743a120b6..613ca38118f356454253e2fe05a0415943fa549e:/redakcja/static/js/wiki/loader.js diff --git a/redakcja/static/js/wiki/loader.js b/redakcja/static/js/wiki/loader.js index eb535a16..f2d7fb71 100644 --- a/redakcja/static/js/wiki/loader.js +++ b/redakcja/static/js/wiki/loader.js @@ -5,7 +5,7 @@ if (!window.console) { } } -var DEFAULT_PERSPECTIVE = "#SummaryPerspective"; +var DEFAULT_PERSPECTIVE = "#VisualPerspective"; $(function() { @@ -59,34 +59,28 @@ $(function() function() { $.wiki.state.perspectives.ScanGalleryPerspective.show = true; $('#sidebar').show(); - $(".vsplitbar-title").html("↓ GALLERY ↓"); $('.vsplitbar').css('right', 480).addClass('active'); $('#editor .editor').css('right', 510); $(window).resize(); $.wiki.perspectiveForTab('#tabs-right .active').onEnter(); }, function() { + var active_right = $.wiki.perspectiveForTab('#tabs-right .active'); $.wiki.state.perspectives.ScanGalleryPerspective.show = false; $('#sidebar').hide(); $('.vsplitbar').css('right', 0).removeClass('active'); - if($(".vsplitbar-title").html() == "↓ ZNAJDŹ I ZAMIEѠ↓"){ - $(".vsplitbar-title").html("↑ ZNAJDŹ I ZAMIEŃ ↑"); - } else if($(".vsplitbar-title").html() == "↓ PRZYPISY â†“"){ - $(".vsplitbar-title").html("↑ PRZYPISY ↑"); - } else { - $(".vsplitbar-title").html("↑ GALERIA ↑"); - } + $(".vsplitbar-title").html("↑ " + active_right.vsplitbar + " ↑"); $('#editor .editor').css('right', 30); $(window).resize(); - $.wiki.perspectiveForTab('#tabs-right .active').onExit(); + active_right.onExit(); } ); if($.wiki.state.perspectives.ScanGalleryPerspective.show){ $('.vsplitbar').trigger('click'); - $(".vsplitbar-title").html("↓ GALLERY ↓"); + $(".vsplitbar-title").html("↓ GALERIA ↓"); } else { - $(".vsplitbar-title").html("↑ GALLERY ↑"); + $(".vsplitbar-title").html("↑ GALERIA ↑"); } window.onbeforeunload = function(e) { if($.wiki.isDirty()) { @@ -116,6 +110,14 @@ $(function() console.log("Initial tab is:", active_tab) $.wiki.switchToTab(active_tab); + + /* every 5 minutes check for a newer version */ + var revTimer = setInterval(function() { + CurrentDocument.checkRevision({outdated: function(){ + $('#header').addClass('out-of-date'); + clearInterval(revTimer); + }}); + }, 300000); }, failure: function() { $('#loading-overlay').fadeOut();