<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');
setTimeout(function() {resizePanels();}, 10);
})