Fixed weird behavior in scroll link extension

This commit is contained in:
benweet 2014-03-19 23:06:17 +00:00
parent d445ccfec8
commit 3f8d96eb48

View File

@ -183,8 +183,8 @@ define([
lastPreviewScrollTop = previewScrollTop;
return;
}
$previewElt.stop('scrollLinkFx', true).animate({
scrollTop: destScrollTop
scrollingHelper.stop('scrollLinkFx', true).css('value', 0).animate({
value: destScrollTop - previewScrollTop
}, {
easing: 'easeOutSine',
duration: 200,
@ -192,11 +192,12 @@ define([
step: function(now) {
isPreviewMoving = true;
lastPreviewScrollTop = previewScrollTop + now;
$previewElt.scrollTop(lastPreviewScrollTop);
},
done: function() {
setTimeout(function() {
_.defer(function() {
isPreviewMoving = false;
}, 100);
});
},
}).dequeue('scrollLinkFx');
}
@ -227,25 +228,6 @@ define([
lastEditorScrollTop = editorScrollTop;
return;
}
if(window.lightMode) {
$textareaElt.stop('scrollLinkFx', true).animate({
scrollTop: destScrollTop
}, {
easing: 'easeOutSine',
duration: 200,
queue: 'scrollLinkFx',
step: function(now) {
isEditorMoving = true;
lastEditorScrollTop = editorScrollTop + now;
},
done: function() {
setTimeout(function() {
isEditorMoving = false;
}, 100);
},
}).dequeue('scrollLinkFx');
}
else {
scrollingHelper.stop('scrollLinkFx', true).css('value', 0).animate({
value: destScrollTop - editorScrollTop
}, {
@ -255,7 +237,8 @@ define([
step: function(now) {
isEditorMoving = true;
lastEditorScrollTop = editorScrollTop + now;
aceEditor.session.setScrollTop(lastEditorScrollTop);
window.lightMode || aceEditor.session.setScrollTop(lastEditorScrollTop);
window.lightMode && $textareaElt.scrollTop(lastEditorScrollTop);
},
done: function() {
_.defer(function() {
@ -264,7 +247,6 @@ define([
},
}).dequeue('scrollLinkFx');
}
}
}, 100);
scrollLink.onLayoutResize = function() {