Fix transposed width/height values for popup.js
authorMichael J. Rubinsky <mrubinsk@horde.org>
Fri, 31 Jul 2009 22:10:30 +0000 (18:10 -0400)
committerMichael J. Rubinsky <mrubinsk@horde.org>
Fri, 31 Jul 2009 22:10:30 +0000 (18:10 -0400)
ansel/js/src/googlemap.js

index b42bd7f..c0992e0 100644 (file)
@@ -398,7 +398,7 @@ Ansel_GMap.prototype = {
     _getRelocateLink: function(iid) {
         if (options.hasEdit) {
             var a = new Element('a', {href: this.options.relocateUrl + '?image=' + iid}).update(this.options.relocateText);
-            a.observe('click', function(e) { Horde.popup({ url: this.options.relocateUrl, params: 'image=' + iid, width: 600, height: 750 }); e.stop();}.bind(this));
+            a.observe('click', function(e) { Horde.popup({ url: this.options.relocateUrl, params: 'image=' + iid, width: 750, height: 600 }); e.stop();}.bind(this));
             return a;
         } else {
             return '';