From a34550f4f9a8ae6669f5c165cbdff6d1784b6d37 Mon Sep 17 00:00:00 2001 From: taggon Date: Wed, 15 Jun 2011 08:55:20 +0000 Subject: [PATCH] xGetElementById was renamed to get_by_id git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@8484 201d5d3c-b55e-5fd7-737f-ddc643e51545 --- common/js/common.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/js/common.js b/common/js/common.js index 69eab7352..88c2eca4a 100644 --- a/common/js/common.js +++ b/common/js/common.js @@ -910,7 +910,7 @@ function ucfirst(str) { return str.charAt(0).toUpperCase() + str.slice(1); } -function xGetElementById(id) { +function get_by_id(id) { return document.getElementById(id); }