From b32a142e14ffe3dd0916b9cc4534000a72e99aac Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Thu, 25 Jul 2013 09:48:58 +0000 Subject: [PATCH] Use the minified version of jquery-migrate, since the non-minified version (which produces debug traces) is excluded from the build. SVN:trunk[2810] --- application/nicewebpage.class.inc.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/application/nicewebpage.class.inc.php b/application/nicewebpage.class.inc.php index 4c3a497ca..24b8f1ce1 100644 --- a/application/nicewebpage.class.inc.php +++ b/application/nicewebpage.class.inc.php @@ -38,9 +38,7 @@ class NiceWebPage extends WebPage parent::__construct($s_title); $this->m_aReadyScripts = array(); $this->add_linked_script("../js/jquery-1.10.0.min.js"); - // TODO: use the minified version once debugging is complete and the compatibility is fully tested - $this->add_linked_script("../js/jquery-migrate-1.2.1.js"); // Provides backward compatibility and warns about the use of obsolete features... - //$this->add_linked_script("../js/jquery-migrate-1.2.1.min.js"); // Needed since many other plugins still rely on oldies like $.browser + $this->add_linked_script("../js/jquery-migrate-1.2.1.min.js"); // Needed since many other plugins still rely on oldies like $.browser $this->add_linked_stylesheet('../css/ui-lightness/jquery-ui-1.10.3.custom.min.css'); $this->add_linked_script('../js/jquery-ui-1.10.3.custom.min.js'); $this->add_linked_script("../js/hovertip.js");