};
$('body').mousemove(function(e) {
- CurrentDocument.active = true;
+ CurrentDocument.active = new Date();
});
$('body').keydown(function(e) {
- CurrentDocument.active = true;
+ CurrentDocument.active = new Date();
});
+ $(window).keydown(function(e) {
+ if (e.ctrlKey || e.metaKey) {
+ switch (e.key) {
+ case 's':
+ e.preventDefault();
+ $("#save-button").click();
+ break;
+ }
+ }
+ });
+
console.log("Fetching document's text");
$(document).bind('wlapi_document_changed', function(event, doc) {
console.log("Initial tab is:", active_tab)
$.wiki.switchToTab(active_tab);
- /* every minute check for a newer version */
+ /* check for a newer version */
+ CurrentDocument.checkRevision({outdated: function(){
+ $('#header').addClass('out-of-date');
+ }});
var revTimer = setInterval(function() {
CurrentDocument.checkRevision({outdated: function(){
$('#header').addClass('out-of-date');
- clearInterval(revTimer);
}});
- }, 60 * 1000);
+ }, 5 * 1000);
},
failure: function() {
$('#loading-overlay').fadeOut();