|
From: <al...@us...> - 2008-09-16 16:09:06
|
Revision: 680
http://sciret.svn.sourceforge.net/sciret/?rev=680&view=rev
Author: alpeb
Date: 2008-09-16 23:09:03 +0000 (Tue, 16 Sep 2008)
Log Message:
-----------
fixed little jump when popping-up the todo popup
Modified Paths:
--------------
trunk/javascript/general.js
trunk/templates/head.tpl
Modified: trunk/javascript/general.js
===================================================================
--- trunk/javascript/general.js 2008-09-16 22:58:24 UTC (rev 679)
+++ trunk/javascript/general.js 2008-09-16 23:09:03 UTC (rev 680)
@@ -575,6 +575,9 @@
this.todoDialog.callback.success = SCIRET.todos.saveCompleted;
this.todoDialog.callback.scope = this;
this.todoDialog.render();
+
+ $('todoDialog').style.display = "block";
+
this.todoDialog.show();
},
Modified: trunk/templates/head.tpl
===================================================================
--- trunk/templates/head.tpl 2008-09-16 22:58:24 UTC (rev 679)
+++ trunk/templates/head.tpl 2008-09-16 23:09:03 UTC (rev 680)
@@ -48,4 +48,4 @@
// var myLogReader = new YAHOO.widget.LogReader();
</script>
<div id="overDiv" style="position:absolute; visibility:hidden; z-index:1000;"></div>
- <div id="todoDialog"></div>
+ <div id="todoDialog" style="display:none"></div>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|