Dodanie możliwości włączania i wyłączania automatycznego przewijania.
[redakcja.git] / project / templates / explorer / file_xml.html
index 5bad3c4..e9cd85c 100644 (file)
             
             $('iframe').load(function() {
                 $('#images').autoscroll('iframe');
-                
+                $('.toggleAutoscroll').toggle(function() {
+                    $(this).html('Synchronizuj przewijanie');
+                    $('#images').disableAutoscroll();
+                }, function() {
+                    $(this).html('Nie synchronizuj przewijania');
+                    $('#images').enableAutoscroll();
+                })
                 setTimeout(function() {resizePanels();}, 10);
             })
             
         
         <div id="status-bar">
             {{ form.user.errors }} {{ form.commit_message.errors }}
-            <p>Użytkownik: {{ form.user }} Opis zmian: {{ form.commit_message }} <input type="submit" value="Zapisz"/></p>
+            <p>
+                Użytkownik: {{ form.user }}
+                Opis zmian: {{ form.commit_message }}
+                <input type="submit" value="Zapisz"/>
+                <a href="#" class="toggleAutoscroll" style="float: right">Nie synchronizuj przewijania</a>
+            </p>
         </div>
     </form>
 {% endblock maincontent %}