[Mapbender-commits] r2112 - branches/2.5/http/javascripts
svn_mapbender at osgeo.org
svn_mapbender at osgeo.org
Wed Feb 20 05:04:57 EST 2008
Author: nimix
Date: 2008-02-20 05:04:57 -0500 (Wed, 20 Feb 2008)
New Revision: 2112
Modified:
branches/2.5/http/javascripts/popup.js
Log:
fix strange ie events lost bug
Modified: branches/2.5/http/javascripts/popup.js
===================================================================
--- branches/2.5/http/javascripts/popup.js 2008-02-20 09:27:39 UTC (rev 2111)
+++ branches/2.5/http/javascripts/popup.js 2008-02-20 10:04:57 UTC (rev 2112)
@@ -190,12 +190,12 @@
div.style.zIndex=popup_top++;
div.style.opacity=String(this.opacity);
+ //create window
+ document.body.appendChild(div);
+
//create Window elements
div.innerHTML='<div class="jqmnTitle jqDrag"><h1>'+this.title+'</h1></div><div class="jqmnContent">'+this.html+'</div><img src="../img/close_icon.png" class="jqmClose" alt="close" /><div class="jqResize" />';
- //create window
- document.body.appendChild(div);
-
//Bind events on title click (move window)
$(div.firstChild).mousedown(function(){
//set to top
More information about the Mapbender_commits
mailing list