Dodanie możliwości włączania i wyłączania automatycznego przewijania.
[redakcja.git] / project / templates / explorer / file_xml.html
index c774fe1..e9cd85c 100644 (file)
@@ -4,6 +4,7 @@
     <script src="/static/js/jquery.fieldselection.js" type="text/javascript" charset="utf-8"></script>
     <script src="/static/js/jquery.lazyload.js" type="text/javascript" charset="utf-8"></script>
     <script src="/static/js/codemirror/codemirror.js" type="text/javascript" charset="utf-8"></script>
+    <script src="/static/js/jquery.autoscroll.js" type="text/javascript" charset="utf-8"></script>
     <script type="text/javascript" charset="utf-8">
         function addEditorButton(label, fn) {
             $('<button type="button">' + label + '</button>').click(function(event) {
             });
             
             $('iframe').load(function() {
-                $($('iframe').contents()).scroll(function() {
-                    var percentScrolled = $('body', this).scrollTop() / $('body', this).height();
-                    $('#images-wrap').scrollTop(percentScrolled * $('#images').height());
-                });
-                
+                $('#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 %}