made it system lib compatible, included newest version 2.1.4
This commit is contained in:
parent
1efe30c074
commit
24eb1a096c
3
autoload.inc
Normal file
3
autoload.inc
Normal file
@ -0,0 +1,3 @@
|
||||
<?php
|
||||
\SYSTEM\autoload::registerFolder(dirname(__FILE__),'LIB');
|
||||
\LIB\lib_controll::register('\LIB\lib_jquery');
|
||||
4
lib/jquery-2.1.4.min.js
vendored
Normal file
4
lib/jquery-2.1.4.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
10
lib_jquery.php
Normal file
10
lib_jquery.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace LIB;
|
||||
class lib_jquery extends \LIB\lib_js{
|
||||
public static function get_class(){
|
||||
return self::class;}
|
||||
public static function js_path(){
|
||||
return \SYSTEM\WEBPATH(new \SYSTEM\PLIB(),'/jquery/lib/jquery-2.1.4.min.js');}
|
||||
public static function version(){
|
||||
return '2.1.4';}
|
||||
}
|
||||
10
lib_jquery_1.9.1.php
Normal file
10
lib_jquery_1.9.1.php
Normal file
@ -0,0 +1,10 @@
|
||||
<?php
|
||||
namespace LIB;
|
||||
class lib_jquery_1_9_1 extends \LIB\lib_js{
|
||||
public static function get_class(){
|
||||
return self::class;}
|
||||
public static function js_path(){
|
||||
return \SYSTEM\WEBPATH(new \SYSTEM\PLIB(),'/jquery/lib/jquery-1.9.1.min.js');}
|
||||
public static function version(){
|
||||
return '1.9.1';}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user