diff options
author | Andrey Andreev <narf@devilix.net> | 2014-05-31 19:29:09 +0200 |
---|---|---|
committer | Andrey Andreev <narf@devilix.net> | 2014-05-31 19:29:09 +0200 |
commit | 0b18634e32efbafb83746c123b7d058b1570a01d (patch) | |
tree | 13e49d264365e51aef36d195e08f5d404684a087 /system/libraries/javascript/Jquery.php | |
parent | e80b3773c1a2362257298320beff505bcae73b72 (diff) |
Changelog messages, bump year in copyright notices
Diffstat (limited to 'system/libraries/javascript/Jquery.php')
-rw-r--r-- | system/libraries/javascript/Jquery.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/system/libraries/javascript/Jquery.php b/system/libraries/javascript/Jquery.php index baab83d25..48d8b3e57 100644 --- a/system/libraries/javascript/Jquery.php +++ b/system/libraries/javascript/Jquery.php @@ -3,7 +3,7 @@ /** * CodeIgniter * - * An open source application development framework for PHP 4.3.2 or newer + * An open source application development framework for PHP 5.1.6 or newer * * @package CodeIgniter * @author ExpressionEngine Dev Team @@ -23,7 +23,7 @@ * @category Loader * @link http://www.codeigniter.com/user_guide/libraries/javascript.html */ - + class CI_Jquery extends CI_Javascript { var $_javascript_folder = 'js'; @@ -36,18 +36,18 @@ class CI_Jquery extends CI_Javascript { public function __construct($params) { - $this->CI =& get_instance(); + $this->CI =& get_instance(); extract($params); if ($autoload === TRUE) { - $this->script(); + $this->script(); } - + log_message('debug', "Jquery Class Initialized"); } - - // -------------------------------------------------------------------- + + // -------------------------------------------------------------------- // Event Code // -------------------------------------------------------------------- |