Author: ornicar2
Date: 2010-02-04 00:26:01 +0100 (Thu, 04 Feb 2010)
New Revision: 27522
Modified:
plugins/diemPlugin/trunk/dmAdminPlugin/web/js/dmAdminForm.js
Log:
[Diem]
- admin markdown editor preview scroll also synchronizes on top
Modified: plugins/diemPlugin/trunk/dmAdminPlugin/web/js/dmAdminForm.js
===================================================================
--- plugins/diemPlugin/trunk/dmAdminPlugin/web/js/dmAdminForm.js
2010-02-03 23:20:22 UTC (rev 27521)
+++ plugins/diemPlugin/trunk/dmAdminPlugin/web/js/dmAdminForm.js
2010-02-03 23:26:01 UTC (rev 27522)
@@ -61,8 +61,12 @@
$editor.bind('scroll', function()
{
- if($editor.scrollTop()+$editor.height() == $editor[0].scrollHeight)
+ if($editor.scrollTop() == 0)
{
+ $preview.scrollTop(0);
+ }
+ else if($editor.scrollTop()+$editor.height() ==
$editor[0].scrollHeight)
+ {
$preview.scrollTop($preview[0].scrollHeight - $preview.height());
}
});
--
You received this message because you are subscribed to the Google Groups
"symfony SVN" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/symfony-svn?hl=en.