Minor editing improvements.
[redakcja.git] / src / redakcja / static / js / wiki / loader.js
index 7ea9b40..adc2cb4 100644 (file)
@@ -113,12 +113,23 @@ $(function() {
         };
 
         $('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) {
@@ -141,13 +152,15 @@ $(function() {
                 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();