From 79cd6cefd5996031ebb93ffdac609d503553afb0 Mon Sep 17 00:00:00 2001 From: thomascube Date: Tue, 1 Mar 2011 22:35:58 +0000 Subject: Simplify code --- program/include/rcube_template.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/program/include/rcube_template.php b/program/include/rcube_template.php index a686ec8ad..6bd72951b 100755 --- a/program/include/rcube_template.php +++ b/program/include/rcube_template.php @@ -75,12 +75,11 @@ class rcube_template extends rcube_html_page $this->set_skin($this->config['skin']); // add common javascripts - $javascript = 'var '.JS_OBJECT_NAME.' = new rcube_webmail();'; + $this->add_script('var '.JS_OBJECT_NAME.' = new rcube_webmail();', 'head_top'); // don't wait for page onload. Call init at the bottom of the page (delayed) $this->add_script(JS_OBJECT_NAME.'.init();', 'docready'); - $this->add_script($javascript, 'head_top'); $this->scripts_path = 'program/js/'; $this->include_script('jquery-1.5.min.js'); $this->include_script('common.js'); -- cgit v1.2.3