fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
excercies interactions + checking
[redakcja.git]
/
redakcja
/
static
/
js
/
wiki
/
loader.js
diff --git
a/redakcja/static/js/wiki/loader.js
b/redakcja/static/js/wiki/loader.js
index
f051511
..
f2d7fb7
100644
(file)
--- a/
redakcja/static/js/wiki/loader.js
+++ b/
redakcja/static/js/wiki/loader.js
@@
-5,7
+5,7
@@
if (!window.console) {
}
}
}
}
-var DEFAULT_PERSPECTIVE = "#
Summary
Perspective";
+var DEFAULT_PERSPECTIVE = "#
Visual
Perspective";
$(function()
{
$(function()
{
@@
-59,32
+59,28
@@
$(function()
function() {
$.wiki.state.perspectives.ScanGalleryPerspective.show = true;
$('#sidebar').show();
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() {
$('.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');
$.wiki.state.perspectives.ScanGalleryPerspective.show = false;
$('#sidebar').hide();
$('.vsplitbar').css('right', 0).removeClass('active');
- if($(".vsplitbar-title").html() == "↓ SEARCH AND REPLACE ↓"){
- $(".vsplitbar-title").html("↑ SEARCH AND REPLACE ↑");
- } else {
- $(".vsplitbar-title").html("↑ GALLERY ↑");
- }
+ $(".vsplitbar-title").html("↑ " + active_right.vsplitbar + " ↑");
$('#editor .editor').css('right', 30);
$(window).resize();
$('#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');
}
);
if($.wiki.state.perspectives.ScanGalleryPerspective.show){
$('.vsplitbar').trigger('click');
- $(".vsplitbar-title").html("↓ GAL
LERY
↓");
+ $(".vsplitbar-title").html("↓ GAL
ERIA
↓");
} else {
} else {
- $(".vsplitbar-title").html("↑ GAL
LERY
↑");
+ $(".vsplitbar-title").html("↑ GAL
ERIA
↑");
}
window.onbeforeunload = function(e) {
if($.wiki.isDirty()) {
}
window.onbeforeunload = function(e) {
if($.wiki.isDirty()) {
@@
-114,6
+110,14
@@
$(function()
console.log("Initial tab is:", active_tab)
$.wiki.switchToTab(active_tab);
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();
},
failure: function() {
$('#loading-overlay').fadeOut();