This file contains hidden or 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
| <?php | |
| /** | |
| * Created by PhpStorm. | |
| * Author: Stepan Seliuk <stepan@selyuk.com> | |
| * Date: 31/08/14 | |
| * Time: 19:45 | |
| */ | |
| namespace app\assets; |
This file contains hidden or 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
| MyApp.CommonFunctionsModule.isEmptyObject = function ( obj ) { | |
| var hasOwnProperty = Object.prototype.hasOwnProperty; | |
| // null and undefined are "empty" | |
| if ( obj == null ) return true; | |
| // Assume if it has a length property with a non-zero value | |
| // that that property is correct. | |
| if ( obj.length > 0 ) return false; |
This file contains hidden or 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
| /** | |
| * Created by PhpStorm. | |
| * Author: Stepan Seliuk <stepan@selyuk.com> | |
| * Date: 30/08/14 | |
| * Time: 20:20 | |
| */ | |
| if ( typeof window.MyApp === 'undefined' ) window.MyApp = {}; | |
| MyApp.ttLib = { |
This file contains hidden or 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
| .dropdown-submenu { | |
| position: relative; | |
| & > .dropdown-menu { | |
| top: 0; | |
| left: 100%; | |
| margin-top: -6px; | |
| margin-left: -1px; | |
| -webkit-border-radius: 0 6px 6px 6px; | |
| -moz-border-radius: 0 6px 6px 6px; |
NewerOlder