git-svn-id: http://xe-core.googlecode.com/svn/trunk@591 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-21 13:03:22 +00:00
parent e3102a3207
commit 5296036e75

View file

@ -11,14 +11,17 @@ function getNaverMap() {
var x = node.getAttribute("x");
var y = node.getAttribute("y");
var width = node.getAttribute("width");
var height = node.getAttribute("height");
var width = xWidth(node);
var height = xHeight(node);
var address = node.getAttribute("address");
var selected_address = node.getAttribute("selected_address");
if(!address || !x || !y) return;
xGetElementById("address").value = address;
search_address(selected_address);
xGetElementById("navermap_width").value = width-6;
xGetElementById("navermap_height").value = height-6;
}
function insertNaverMap(obj) {