-
-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
860 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
/** | ||
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015 | ||
* @package yii2-widgets | ||
* @subpackage yii2-widget-select2 | ||
* @version 2.0.5 | ||
*/ | ||
|
||
namespace kartik\select2; | ||
|
||
use kartik\base\AssetBundle; | ||
|
||
/** | ||
* Asset bundle for Select2 Additional CSS | ||
* | ||
* @author Kartik Visweswaran <[email protected]> | ||
* @since 1.0 | ||
*/ | ||
class Select2AddlAsset extends AssetBundle | ||
{ | ||
/** | ||
* @inheritdoc | ||
*/ | ||
public function init() | ||
{ | ||
$this->setSourcePath(__DIR__ . '/assets'); | ||
$this->setupAssets('css', ['css/select2-addl']); | ||
parent::init(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,20 +4,20 @@ | |
* @copyright Copyright © Kartik Visweswaran, Krajee.com, 2014 - 2015 | ||
* @package yii2-widgets | ||
* @subpackage yii2-widget-select2 | ||
* @version 2.0.4 | ||
* @version 2.0.5 | ||
*/ | ||
|
||
namespace kartik\select2; | ||
|
||
use Yii; | ||
use kartik\base\AssetBundle; | ||
|
||
/** | ||
* Asset bundle for Select2 Widget | ||
* | ||
* @author Kartik Visweswaran <[email protected]> | ||
* @since 1.0 | ||
*/ | ||
class Select2Asset extends \kartik\base\AssetBundle | ||
class Select2Asset extends AssetBundle | ||
{ | ||
/** | ||
* @inheritdoc | ||
|
@@ -29,4 +29,4 @@ public function init() | |
$this->setupAssets('js', ['js/select2.full', 'js/select2-krajee']); | ||
parent::init(); | ||
} | ||
} | ||
} |
Oops, something went wrong.