From 9f014d78aab9ab012eab7c7e93d0960b100c219e Mon Sep 17 00:00:00 2001 From: "Michael J. Rubinsky" Date: Fri, 31 Jul 2009 18:10:30 -0400 Subject: [PATCH] Fix transposed width/height values for popup.js --- ansel/js/src/googlemap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansel/js/src/googlemap.js b/ansel/js/src/googlemap.js index b42bd7fda..c0992e072 100644 --- a/ansel/js/src/googlemap.js +++ b/ansel/js/src/googlemap.js @@ -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 ''; -- 2.11.0