fnp
/
redakcja.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Dodanie możliwości włączania i wyłączania automatycznego przewijania.
[redakcja.git]
/
project
/
templates
/
explorer
/
file_xml.html
diff --git
a/project/templates/explorer/file_xml.html
b/project/templates/explorer/file_xml.html
index
5bad3c4
..
e9cd85c
100644
(file)
--- a/
project/templates/explorer/file_xml.html
+++ b/
project/templates/explorer/file_xml.html
@@
-50,7
+50,13
@@
$('iframe').load(function() {
$('#images').autoscroll('iframe');
$('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);
})
setTimeout(function() {resizePanels();}, 10);
})
@@
-84,7
+90,12
@@
<div id="status-bar">
{{ form.user.errors }} {{ form.commit_message.errors }}
<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 %}
</div>
</form>
{% endblock maincontent %}