├── .bowerrc ├── .editorconfig ├── .env.example ├── .gitattributes ├── .gitignore ├── app ├── Api │ ├── Controllers │ │ ├── BaseController.php │ │ └── UsersController.php │ └── Middleware │ │ └── .gitkeep ├── Console │ └── Kernel.php ├── Events │ ├── Event.php │ └── User │ │ ├── UserLoggedInEvent.php │ │ └── UserRegisteredEvent.php ├── Exceptions │ └── Handler.php ├── Helpers │ └── Helpers.php ├── Http │ ├── Controllers │ │ ├── Auth │ │ │ ├── ForgotPasswordController.php │ │ │ ├── LoginController.php │ │ │ ├── RegisterController.php │ │ │ ├── ResetPasswordController.php │ │ │ └── VerificationController.php │ │ ├── BaseController.php │ │ ├── Console │ │ │ ├── ConsoleController.php │ │ │ └── UserController.php │ │ ├── ExampleController.php │ │ ├── HomeController.php │ │ ├── ImageController.php │ │ ├── Mobile │ │ │ ├── MobileController.php │ │ │ └── UserController.php │ │ └── UserController.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckForMaintenanceMode.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ ├── TrimStrings.php │ │ ├── TrustProxies.php │ │ └── VerifyCsrfToken.php │ └── Requests │ │ ├── UserCreateRequest.php │ │ └── UserUpdateRequest.php ├── Jobs │ └── Job.php ├── Listeners │ ├── .gitkeep │ └── User │ │ └── UserEventListener.php ├── Models │ ├── BaseModel.php │ ├── Common │ │ └── .gitkeep │ ├── Foundation │ │ └── User.php │ ├── Image │ │ └── SomelineImage.php │ ├── Traits │ │ └── RelationUserTrait.php │ └── User │ │ └── .gitkeep ├── Observers │ └── .gitkeep ├── Policies │ ├── .gitkeep │ └── BasePolicy.php ├── Presenters │ ├── BasePresenter.php │ └── UserPresenter.php ├── Providers │ ├── ApiServiceProvider.php │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── BroadcastServiceProvider.php │ ├── EventServiceProvider.php │ ├── PolymorphicServiceProvider.php │ ├── RepositoryServiceProvider.php │ └── RouteServiceProvider.php ├── Repositories │ ├── Criteria │ │ └── .gitkeep │ ├── Eloquent │ │ ├── BaseRepository.php │ │ └── UserRepositoryEloquent.php │ └── Interfaces │ │ ├── BaseRepositoryInterface.php │ │ └── UserRepository.php ├── Transformers │ ├── BaseTransformer.php │ └── UserTransformer.php └── Validators │ └── UserValidator.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── bower.json ├── composer.json ├── composer.lock ├── config ├── api.php ├── app.php ├── auth.php ├── broadcasting.php ├── cache.php ├── clockwork.php ├── compile.php ├── database.php ├── debug-server.php ├── filesystems.php ├── geoip.php ├── hashing.php ├── ide-helper.php ├── image.php ├── imagecache.php ├── laravellocalization.php ├── logging.php ├── logviewer.php ├── mail.php ├── passport.php ├── queue.php ├── repository.php ├── rest-client.php ├── services.php ├── session.php ├── someline-image.php ├── tinker.php ├── trustedproxy.php └── view.php ├── database ├── .gitignore ├── factories │ ├── ModelFactory.php │ └── UserFactory.php ├── migrations │ ├── 2014_10_12_000000_create_users_table.php │ ├── 2014_10_12_100000_create_password_resets_table.php │ ├── 2016_06_01_000001_create_oauth_auth_codes_table.php │ ├── 2016_06_01_000002_create_oauth_access_tokens_table.php │ ├── 2016_06_01_000003_create_oauth_refresh_tokens_table.php │ ├── 2016_06_01_000004_create_oauth_clients_table.php │ └── 2016_06_01_000005_create_oauth_personal_access_clients_table.php └── seeds │ ├── DatabaseSeeder.php │ └── UsersTableSeeder.php ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── assets │ ├── .gitignore │ ├── css │ │ ├── .gitkeep │ │ ├── app.main.css │ │ ├── app.theme.css │ │ ├── app.vendor.css │ │ ├── console.main.css │ │ ├── console.vendor.css │ │ ├── mobile.main.css │ │ └── mobile.vendor.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── Simple-Line-Icons.eot │ │ ├── Simple-Line-Icons.svg │ │ ├── Simple-Line-Icons.ttf │ │ ├── Simple-Line-Icons.woff │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ ├── glyphicons-halflings-regular.woff2 │ │ ├── pt-sans │ │ │ ├── PTC55F.ttf │ │ │ ├── PTC75F.ttf │ │ │ ├── PTN57F.ttf │ │ │ ├── PTN77F.ttf │ │ │ ├── PTS55F.ttf │ │ │ ├── PTS56F.ttf │ │ │ ├── PTS75F.ttf │ │ │ ├── PTS76F.ttf │ │ │ └── Paratype PT Sans Free Font License.txt │ │ └── sourcesanspro │ │ │ ├── sourcesanspro-bold.woff │ │ │ ├── sourcesanspro-light.woff │ │ │ └── sourcesanspro.woff │ ├── js │ │ ├── .gitkeep │ │ ├── app.main.js │ │ ├── app.theme.js │ │ ├── app.vendor.js │ │ ├── console.main.js │ │ ├── console.vendor.js │ │ ├── manifest.js │ │ ├── mobile.main.js │ │ ├── mobile.vendor.js │ │ └── vendor.js │ └── theme │ │ ├── app.theme.css │ │ ├── app.theme.js │ │ └── theme.style.css ├── bower_components │ ├── bootstrap │ │ ├── .bower.json │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── Gruntfile.js │ │ ├── ISSUE_TEMPLATE.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── change-version.js │ │ │ ├── configBridge.json │ │ │ ├── npm-shrinkwrap.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── reset-text.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ ├── nuget │ │ │ ├── MyGet.ps1 │ │ │ ├── bootstrap.less.nuspec │ │ │ └── bootstrap.nuspec │ │ ├── package.js │ │ └── package.json │ ├── font-awesome-4.7.0 │ │ ├── HELP-US-OUT.txt │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── screen-reader.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _screen-reader.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ └── toastr │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── toastr.css │ │ ├── toastr.js │ │ ├── toastr.js.map │ │ ├── toastr.less │ │ ├── toastr.min.css │ │ ├── toastr.min.js │ │ └── toastr.scss ├── css │ ├── app.css │ └── theme.src.css ├── favicon.ico ├── fonts │ ├── FontAwesome.otf │ ├── Simple-Line-Icons.eot │ ├── Simple-Line-Icons.svg │ ├── Simple-Line-Icons.ttf │ ├── Simple-Line-Icons.woff │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ ├── fontawesome-webfont.woff │ ├── fontawesome-webfont.woff2 │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ ├── glyphicons-halflings-regular.woff2 │ ├── pt-sans │ │ ├── PTC55F.ttf │ │ ├── PTC75F.ttf │ │ ├── PTN57F.ttf │ │ ├── PTN77F.ttf │ │ ├── PTS55F.ttf │ │ ├── PTS56F.ttf │ │ ├── PTS75F.ttf │ │ ├── PTS76F.ttf │ │ └── Paratype PT Sans Free Font License.txt │ └── sourcesanspro │ │ ├── sourcesanspro-bold.woff │ │ ├── sourcesanspro-light.woff │ │ └── sourcesanspro.woff ├── images │ └── .gitkeep ├── index.php ├── js │ ├── app.js │ └── theme.src.js ├── mix-manifest.json ├── robots.txt ├── vendors │ └── bower_components │ │ ├── SHA-1 │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── package.json │ │ └── sha1.js │ │ ├── angular-animate │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-animate.js │ │ ├── angular-animate.min.js │ │ ├── angular-animate.min.js.map │ │ ├── bower.json │ │ └── package.json │ │ ├── angular-bootstrap-nav-tree │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── bower.json │ │ └── dist │ │ │ ├── abn_tree.css │ │ │ └── abn_tree_directive.js │ │ ├── angular-bootstrap │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── ui-bootstrap-tpls.js │ │ ├── ui-bootstrap-tpls.min.js │ │ ├── ui-bootstrap.js │ │ └── ui-bootstrap.min.js │ │ ├── angular-cookies │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-cookies.js │ │ ├── angular-cookies.min.js │ │ ├── angular-cookies.min.js.map │ │ ├── bower.json │ │ └── package.json │ │ ├── angular-file-upload │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── Gruntfile.coffee │ │ ├── README.md │ │ ├── angular-file-upload.js │ │ ├── angular-file-upload.min.js │ │ ├── angular-file-upload.min.map │ │ ├── bower.json │ │ ├── license.txt │ │ ├── package.json │ │ └── src │ │ │ ├── intro.js │ │ │ ├── module.js │ │ │ └── outro.js │ │ ├── angular-resource │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-resource.js │ │ ├── angular-resource.min.js │ │ ├── angular-resource.min.js.map │ │ ├── bower.json │ │ └── package.json │ │ ├── angular-route │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-route.js │ │ ├── angular-route.min.js │ │ ├── angular-route.min.js.map │ │ ├── bower.json │ │ ├── index.js │ │ └── package.json │ │ ├── angular-sanitize │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-sanitize.js │ │ ├── angular-sanitize.min.js │ │ ├── angular-sanitize.min.js.map │ │ ├── bower.json │ │ └── package.json │ │ ├── angular-smart-table │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── bower.json │ │ ├── changeLog.md │ │ ├── dist │ │ │ ├── smart-table.debug.js │ │ │ └── smart-table.min.js │ │ ├── gulpFile.js │ │ ├── package.json │ │ ├── readme.md │ │ └── src │ │ │ ├── bottom.txt │ │ │ ├── smart-table.module.js │ │ │ ├── stPagination.js │ │ │ ├── stPipe.js │ │ │ ├── stSearch.js │ │ │ ├── stSelectRow.js │ │ │ ├── stSort.js │ │ │ ├── stTable.js │ │ │ └── top.txt │ │ ├── angular-touch │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-touch.js │ │ ├── angular-touch.min.js │ │ ├── angular-touch.min.js.map │ │ ├── bower.json │ │ └── package.json │ │ ├── angular-translate-loader-static-files │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-translate-loader-static-files.js │ │ ├── angular-translate-loader-static-files.min.js │ │ └── bower.json │ │ ├── angular-translate-storage-cookie │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-translate-storage-cookie.js │ │ ├── angular-translate-storage-cookie.min.js │ │ └── bower.json │ │ ├── angular-translate-storage-local │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-translate-storage-local.js │ │ ├── angular-translate-storage-local.min.js │ │ └── bower.json │ │ ├── angular-translate │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-translate.js │ │ ├── angular-translate.min.js │ │ └── bower.json │ │ ├── angular-ui-calendar │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ └── src │ │ │ └── calendar.js │ │ ├── angular-ui-grid │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── ui-grid.bootstrap.css │ │ ├── ui-grid.css │ │ ├── ui-grid.eot │ │ ├── ui-grid.js │ │ ├── ui-grid.min.css │ │ ├── ui-grid.min.js │ │ ├── ui-grid.svg │ │ ├── ui-grid.ttf │ │ └── ui-grid.woff │ │ ├── angular-ui-router │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── api │ │ │ └── angular-ui-router.d.ts │ │ ├── bower.json │ │ ├── release │ │ │ ├── angular-ui-router.js │ │ │ └── angular-ui-router.min.js │ │ └── src │ │ │ ├── common.js │ │ │ ├── resolve.js │ │ │ ├── state.js │ │ │ ├── stateDirectives.js │ │ │ ├── stateFilters.js │ │ │ ├── templateFactory.js │ │ │ ├── urlMatcherFactory.js │ │ │ ├── urlRouter.js │ │ │ ├── view.js │ │ │ ├── viewDirective.js │ │ │ └── viewScroll.js │ │ ├── angular-ui-select │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── select.css │ │ │ ├── select.js │ │ │ ├── select.min.css │ │ │ └── select.min.js │ │ └── package.json │ │ ├── angular-ui-utils │ │ ├── .bower.json │ │ ├── .travis.yml │ │ ├── bower.json │ │ ├── ui-utils-ieshiv.js │ │ ├── ui-utils-ieshiv.min.js │ │ ├── ui-utils.js │ │ └── ui-utils.min.js │ │ ├── angular-xeditable │ │ ├── .bower.json │ │ ├── CHANGELOG.txt │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ └── xeditable.css │ │ │ └── js │ │ │ │ ├── xeditable.js │ │ │ │ └── xeditable.min.js │ │ └── readme.md │ │ ├── angular │ │ ├── .bower.json │ │ ├── README.md │ │ ├── angular-csp.css │ │ ├── angular.js │ │ ├── angular.min.js │ │ ├── angular.min.js.gzip │ │ ├── angular.min.js.map │ │ ├── bower.json │ │ └── package.json │ │ ├── angularjs-toaster │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── toaster.css │ │ └── toaster.js │ │ ├── angulartics │ │ ├── .bower.json │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── angulartics-adobe.min.js │ │ │ ├── angulartics-baidu.min.js │ │ │ ├── angulartics-chartbeat.min.js │ │ │ ├── angulartics-cnzz.min.js │ │ │ ├── angulartics-debug.min.js │ │ │ ├── angulartics-flurry.min.js │ │ │ ├── angulartics-ga-cordova-google-analytics-plugin.min.js │ │ │ ├── angulartics-ga-cordova.min.js │ │ │ ├── angulartics-ga.min.js │ │ │ ├── angulartics-gtm-cordova.min.js │ │ │ ├── angulartics-gtm.min.js │ │ │ ├── angulartics-hubspot.min.js │ │ │ ├── angulartics-intercom.min.js │ │ │ ├── angulartics-kissmetrics.min.js │ │ │ ├── angulartics-localytics.min.js │ │ │ ├── angulartics-loggly.min.js │ │ │ ├── angulartics-marketo.min.js │ │ │ ├── angulartics-mixpanel.min.js │ │ │ ├── angulartics-piwik.min.js │ │ │ ├── angulartics-scroll.min.js │ │ │ ├── angulartics-segmentio.min.js │ │ │ ├── angulartics-splunk.min.js │ │ │ ├── angulartics-woopra.min.js │ │ │ └── angulartics.min.js │ │ ├── karma.conf.js │ │ ├── nuget │ │ │ ├── angular.analytics.adobe.nuspec │ │ │ ├── angular.analytics.baidu.nuspec │ │ │ ├── angular.analytics.chartbeat.nuspec │ │ │ ├── angular.analytics.cnzz.nuspec │ │ │ ├── angular.analytics.core.nuspec │ │ │ ├── angular.analytics.debug.nuspec │ │ │ ├── angular.analytics.flurry.nuspec │ │ │ ├── angular.analytics.ga.cordova-google-analytics-plugin.nuspec │ │ │ ├── angular.analytics.ga.cordova.nuspec │ │ │ ├── angular.analytics.ga.nuspec │ │ │ ├── angular.analytics.gtm.nuspec │ │ │ ├── angular.analytics.hubspot.nuspec │ │ │ ├── angular.analytics.intercom.nuspec │ │ │ ├── angular.analytics.kissmetrics.nuspec │ │ │ ├── angular.analytics.localytics.nuspec │ │ │ ├── angular.analytics.loggly.nuspec │ │ │ ├── angular.analytics.marketo.nuspec │ │ │ ├── angular.analytics.mixpanel.nuspec │ │ │ ├── angular.analytics.piwik.nuspec │ │ │ ├── angular.analytics.scroll.nuspec │ │ │ ├── angular.analytics.segmentio.nuspec │ │ │ ├── angular.analytics.splunk.nuspec │ │ │ └── angular.analytics.woopra.nuspec │ │ ├── package.json │ │ ├── samples │ │ │ ├── adobe-analytics.html │ │ │ ├── baidu.html │ │ │ ├── chartbeat.html │ │ │ ├── cnzz.html │ │ │ ├── flurry.html │ │ │ ├── google-analytics.html │ │ │ ├── google-tag-manager.html │ │ │ ├── intercom.html │ │ │ ├── kissmetrics.html │ │ │ ├── localytics.html │ │ │ ├── loggly.html │ │ │ ├── loggly.tracker.js │ │ │ ├── marketo.html │ │ │ ├── mixpanel.html │ │ │ ├── partials │ │ │ │ ├── a.tpl.html │ │ │ │ ├── b.tpl.html │ │ │ │ ├── c.tpl.html │ │ │ │ └── root.tpl.html │ │ │ ├── piwik.html │ │ │ ├── scroll.html │ │ │ ├── segmentio.html │ │ │ ├── splunk.html │ │ │ └── woopra.html │ │ ├── src │ │ │ ├── angulartics-adobe.js │ │ │ ├── angulartics-baidu.js │ │ │ ├── angulartics-chartbeat.js │ │ │ ├── angulartics-cnzz.js │ │ │ ├── angulartics-debug.js │ │ │ ├── angulartics-flurry.js │ │ │ ├── angulartics-ga-cordova-google-analytics-plugin.js │ │ │ ├── angulartics-ga-cordova.js │ │ │ ├── angulartics-ga.js │ │ │ ├── angulartics-gtm-cordova.js │ │ │ ├── angulartics-gtm.js │ │ │ ├── angulartics-hubspot.js │ │ │ ├── angulartics-intercom.js │ │ │ ├── angulartics-kissmetrics.js │ │ │ ├── angulartics-localytics.js │ │ │ ├── angulartics-loggly.js │ │ │ ├── angulartics-marketo.js │ │ │ ├── angulartics-mixpanel.js │ │ │ ├── angulartics-piwik.js │ │ │ ├── angulartics-scroll.js │ │ │ ├── angulartics-segmentio.js │ │ │ ├── angulartics-splunk.js │ │ │ ├── angulartics-woopra.js │ │ │ └── angulartics.js │ │ └── test │ │ │ └── angularticsSpec.js │ │ ├── animate.css │ │ ├── .bower.json │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── README.md │ │ ├── animate-config.json │ │ ├── animate.css │ │ ├── animate.min.css │ │ ├── bower.json │ │ ├── package.json │ │ └── source │ │ │ ├── _base.css │ │ │ ├── attention_seekers │ │ │ ├── bounce.css │ │ │ ├── flash.css │ │ │ ├── pulse.css │ │ │ ├── rubberBand.css │ │ │ ├── shake.css │ │ │ ├── swing.css │ │ │ ├── tada.css │ │ │ └── wobble.css │ │ │ ├── bouncing_entrances │ │ │ ├── bounceIn.css │ │ │ ├── bounceInDown.css │ │ │ ├── bounceInLeft.css │ │ │ ├── bounceInRight.css │ │ │ └── bounceInUp.css │ │ │ ├── bouncing_exits │ │ │ ├── bounceOut.css │ │ │ ├── bounceOutDown.css │ │ │ ├── bounceOutLeft.css │ │ │ ├── bounceOutRight.css │ │ │ └── bounceOutUp.css │ │ │ ├── fading_entrances │ │ │ ├── fadeIn.css │ │ │ ├── fadeInDown.css │ │ │ ├── fadeInDownBig.css │ │ │ ├── fadeInLeft.css │ │ │ ├── fadeInLeftBig.css │ │ │ ├── fadeInRight.css │ │ │ ├── fadeInRightBig.css │ │ │ ├── fadeInUp.css │ │ │ └── fadeInUpBig.css │ │ │ ├── fading_exits │ │ │ ├── fadeOut.css │ │ │ ├── fadeOutDown.css │ │ │ ├── fadeOutDownBig.css │ │ │ ├── fadeOutLeft.css │ │ │ ├── fadeOutLeftBig.css │ │ │ ├── fadeOutRight.css │ │ │ ├── fadeOutRightBig.css │ │ │ ├── fadeOutUp.css │ │ │ └── fadeOutUpBig.css │ │ │ ├── flippers │ │ │ ├── flip.css │ │ │ ├── flipInX.css │ │ │ ├── flipInY.css │ │ │ ├── flipOutX.css │ │ │ └── flipOutY.css │ │ │ ├── lightspeed │ │ │ ├── lightSpeedIn.css │ │ │ └── lightSpeedOut.css │ │ │ ├── rotating_entrances │ │ │ ├── rotateIn.css │ │ │ ├── rotateInDownLeft.css │ │ │ ├── rotateInDownRight.css │ │ │ ├── rotateInUpLeft.css │ │ │ └── rotateInUpRight.css │ │ │ ├── rotating_exits │ │ │ ├── rotateOut.css │ │ │ ├── rotateOutDownLeft.css │ │ │ ├── rotateOutDownRight.css │ │ │ ├── rotateOutUpLeft.css │ │ │ └── rotateOutUpRight.css │ │ │ ├── specials │ │ │ ├── hinge.css │ │ │ ├── rollIn.css │ │ │ └── rollOut.css │ │ │ ├── zooming_entrances │ │ │ ├── zoomIn.css │ │ │ ├── zoomInDown.css │ │ │ ├── zoomInLeft.css │ │ │ ├── zoomInRight.css │ │ │ └── zoomInUp.css │ │ │ └── zooming_exits │ │ │ ├── zoomOut.css │ │ │ ├── zoomOutDown.css │ │ │ ├── zoomOutLeft.css │ │ │ ├── zoomOutRight.css │ │ │ └── zoomOutUp.css │ │ ├── bootstrap-chosen │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bootstrap-chosen-variables.less │ │ ├── bootstrap-chosen-variables.scss │ │ ├── bootstrap-chosen.css │ │ ├── bootstrap-chosen.less │ │ ├── bootstrap-chosen.scss │ │ ├── bower.json │ │ ├── chosen-sprite.png │ │ └── chosen-sprite@2x.png │ │ ├── bootstrap-daterangepicker │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── daterangepicker-bs2.css │ │ ├── daterangepicker-bs3.css │ │ ├── daterangepicker.js │ │ ├── examples.html │ │ └── package.json │ │ ├── bootstrap-filestyle │ │ ├── .bower.json │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── bootstrap-filestyle.jquery.json │ │ ├── bower.json │ │ └── src │ │ │ └── bootstrap-filestyle.js │ │ ├── bootstrap-slider │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bootstrap-slider.css │ │ ├── bootstrap-slider.js │ │ ├── bower.json │ │ ├── locks.png │ │ └── slider.css │ │ ├── bootstrap-tagsinput │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-tagsinput.jquery.json │ │ ├── bower.json │ │ ├── dist │ │ │ ├── bootstrap-tagsinput-angular.js │ │ │ ├── bootstrap-tagsinput-angular.min.js │ │ │ ├── bootstrap-tagsinput.css │ │ │ ├── bootstrap-tagsinput.js │ │ │ ├── bootstrap-tagsinput.less │ │ │ ├── bootstrap-tagsinput.min.js │ │ │ ├── bootstrap-tagsinput.min.js.map │ │ │ └── bootstrap-tagsinput.zip │ │ ├── examples │ │ │ ├── assets │ │ │ │ ├── app.css │ │ │ │ ├── app.js │ │ │ │ ├── app_bs2.js │ │ │ │ ├── app_bs3.js │ │ │ │ ├── cities.json │ │ │ │ └── citynames.json │ │ │ ├── bootstrap-2.3.2.html │ │ │ ├── google88e153e464391b3e.html │ │ │ ├── index.html │ │ │ └── lib │ │ │ │ ├── angular │ │ │ │ └── angular.min.js │ │ │ │ ├── bootstrap-2.3.2 │ │ │ │ └── docs │ │ │ │ │ └── assets │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ └── docs.css │ │ │ │ │ └── js │ │ │ │ │ └── bootstrap.min.js │ │ │ │ ├── bootstrap-3 │ │ │ │ └── dist │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ └── bootstrap.min.css │ │ │ │ │ └── js │ │ │ │ │ └── bootstrap.min.js │ │ │ │ ├── bootstrap-tagsinput │ │ │ │ ├── bootstrap-tagsinput-angular.js │ │ │ │ ├── bootstrap-tagsinput-angular.min.js │ │ │ │ ├── bootstrap-tagsinput.css │ │ │ │ ├── bootstrap-tagsinput.js │ │ │ │ ├── bootstrap-tagsinput.less │ │ │ │ ├── bootstrap-tagsinput.min.js │ │ │ │ ├── bootstrap-tagsinput.min.js.map │ │ │ │ └── bootstrap-tagsinput.zip │ │ │ │ ├── jquery │ │ │ │ └── dist │ │ │ │ │ └── jquery.min.js │ │ │ │ ├── rainbow │ │ │ │ ├── js │ │ │ │ │ ├── language │ │ │ │ │ │ ├── generic.js │ │ │ │ │ │ ├── html.js │ │ │ │ │ │ └── javascript.js │ │ │ │ │ └── rainbow.min.js │ │ │ │ └── themes │ │ │ │ │ └── github.css │ │ │ │ └── typeahead.js │ │ │ │ └── dist │ │ │ │ └── typeahead.bundle.js │ │ ├── karma.conf.js │ │ ├── package.json │ │ └── src │ │ │ ├── bootstrap-tagsinput-angular.js │ │ │ ├── bootstrap-tagsinput.js │ │ │ └── bootstrap-tagsinput.less │ │ ├── bootstrap-touchspin │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── Gruntfile.js │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bootstrap-touchspin.jquery.json │ │ ├── bower.json │ │ ├── demo │ │ │ ├── demo.css │ │ │ ├── favicon.ico │ │ │ └── index.html │ │ ├── dist │ │ │ ├── jquery.bootstrap-touchspin.css │ │ │ ├── jquery.bootstrap-touchspin.js │ │ │ ├── jquery.bootstrap-touchspin.min.css │ │ │ └── jquery.bootstrap-touchspin.min.js │ │ ├── package.json │ │ └── src │ │ │ ├── jquery.bootstrap-touchspin.css │ │ │ └── jquery.bootstrap-touchspin.js │ │ ├── bootstrap-wysiwyg │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bootstrap-wysiwyg.js │ │ ├── external │ │ │ ├── google-code-prettify │ │ │ │ ├── lang-apollo.js │ │ │ │ ├── lang-basic.js │ │ │ │ ├── lang-clj.js │ │ │ │ ├── lang-css.js │ │ │ │ ├── lang-dart.js │ │ │ │ ├── lang-erlang.js │ │ │ │ ├── lang-go.js │ │ │ │ ├── lang-hs.js │ │ │ │ ├── lang-lisp.js │ │ │ │ ├── lang-llvm.js │ │ │ │ ├── lang-lua.js │ │ │ │ ├── lang-matlab.js │ │ │ │ ├── lang-ml.js │ │ │ │ ├── lang-mumps.js │ │ │ │ ├── lang-n.js │ │ │ │ ├── lang-pascal.js │ │ │ │ ├── lang-proto.js │ │ │ │ ├── lang-r.js │ │ │ │ ├── lang-rd.js │ │ │ │ ├── lang-scala.js │ │ │ │ ├── lang-sql.js │ │ │ │ ├── lang-tcl.js │ │ │ │ ├── lang-tex.js │ │ │ │ ├── lang-vb.js │ │ │ │ ├── lang-vhdl.js │ │ │ │ ├── lang-wiki.js │ │ │ │ ├── lang-xq.js │ │ │ │ ├── lang-yaml.js │ │ │ │ ├── prettify.css │ │ │ │ ├── prettify.js │ │ │ │ └── run_prettify.js │ │ │ └── jquery.hotkeys.js │ │ ├── index.css │ │ ├── index.html │ │ ├── promo-868x350.png │ │ └── republish.sh │ │ ├── bootstrap │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ └── bootstrap.min.css │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── grunt │ │ │ ├── .jshintrc │ │ │ ├── bs-commonjs-generator.js │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ ├── bs-lessdoc-parser.js │ │ │ ├── bs-raw-files-generator.js │ │ │ ├── configBridge.json │ │ │ └── sauce_browsers.yml │ │ ├── js │ │ │ ├── .jscsrc │ │ │ ├── .jshintrc │ │ │ ├── affix.js │ │ │ ├── alert.js │ │ │ ├── button.js │ │ │ ├── carousel.js │ │ │ ├── collapse.js │ │ │ ├── dropdown.js │ │ │ ├── modal.js │ │ │ ├── popover.js │ │ │ ├── scrollspy.js │ │ │ ├── tab.js │ │ │ ├── tooltip.js │ │ │ └── transition.js │ │ ├── less │ │ │ ├── .csscomb.json │ │ │ ├── .csslintrc │ │ │ ├── alerts.less │ │ │ ├── badges.less │ │ │ ├── bootstrap.less │ │ │ ├── breadcrumbs.less │ │ │ ├── button-groups.less │ │ │ ├── buttons.less │ │ │ ├── carousel.less │ │ │ ├── close.less │ │ │ ├── code.less │ │ │ ├── component-animations.less │ │ │ ├── dropdowns.less │ │ │ ├── forms.less │ │ │ ├── glyphicons.less │ │ │ ├── grid.less │ │ │ ├── input-groups.less │ │ │ ├── jumbotron.less │ │ │ ├── labels.less │ │ │ ├── list-group.less │ │ │ ├── media.less │ │ │ ├── mixins.less │ │ │ ├── mixins │ │ │ │ ├── alerts.less │ │ │ │ ├── background-variant.less │ │ │ │ ├── border-radius.less │ │ │ │ ├── buttons.less │ │ │ │ ├── center-block.less │ │ │ │ ├── clearfix.less │ │ │ │ ├── forms.less │ │ │ │ ├── gradients.less │ │ │ │ ├── grid-framework.less │ │ │ │ ├── grid.less │ │ │ │ ├── hide-text.less │ │ │ │ ├── image.less │ │ │ │ ├── labels.less │ │ │ │ ├── list-group.less │ │ │ │ ├── nav-divider.less │ │ │ │ ├── nav-vertical-align.less │ │ │ │ ├── opacity.less │ │ │ │ ├── pagination.less │ │ │ │ ├── panels.less │ │ │ │ ├── progress-bar.less │ │ │ │ ├── reset-filter.less │ │ │ │ ├── resize.less │ │ │ │ ├── responsive-visibility.less │ │ │ │ ├── size.less │ │ │ │ ├── tab-focus.less │ │ │ │ ├── table-row.less │ │ │ │ ├── text-emphasis.less │ │ │ │ ├── text-overflow.less │ │ │ │ └── vendor-prefixes.less │ │ │ ├── modals.less │ │ │ ├── navbar.less │ │ │ ├── navs.less │ │ │ ├── normalize.less │ │ │ ├── pager.less │ │ │ ├── pagination.less │ │ │ ├── panels.less │ │ │ ├── popovers.less │ │ │ ├── print.less │ │ │ ├── progress-bars.less │ │ │ ├── responsive-embed.less │ │ │ ├── responsive-utilities.less │ │ │ ├── scaffolding.less │ │ │ ├── tables.less │ │ │ ├── theme.less │ │ │ ├── thumbnails.less │ │ │ ├── tooltip.less │ │ │ ├── type.less │ │ │ ├── utilities.less │ │ │ ├── variables.less │ │ │ └── wells.less │ │ └── package.json │ │ ├── bower-jvectormap │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── jquery-jvectormap-1.2.2.css │ │ ├── jquery-jvectormap-1.2.2.min.js │ │ ├── jquery-jvectormap-us-aea-en.js │ │ ├── jquery-jvectormap-world-mill-en.js │ │ └── readme.md │ │ ├── chosen │ │ ├── .bower.json │ │ ├── chosen-sprite.png │ │ ├── chosen-sprite@2x.png │ │ ├── chosen.css │ │ ├── chosen.jquery.js │ │ ├── chosen.jquery.min.js │ │ ├── chosen.min.css │ │ ├── chosen.proto.js │ │ ├── chosen.proto.min.js │ │ ├── docsupport │ │ │ ├── chosen.png │ │ │ ├── oss-credit.png │ │ │ ├── prism.css │ │ │ ├── prism.js │ │ │ └── style.css │ │ ├── index.html │ │ ├── index.proto.html │ │ └── options.html │ │ ├── datatables │ │ ├── .bower.json │ │ ├── Contributing.md │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── license.txt │ │ └── media │ │ │ ├── css │ │ │ ├── jquery.dataTables.css │ │ │ ├── jquery.dataTables.min.css │ │ │ └── jquery.dataTables_themeroller.css │ │ │ ├── images │ │ │ ├── Sorting icons.psd │ │ │ ├── back_disabled.png │ │ │ ├── back_enabled.png │ │ │ ├── back_enabled_hover.png │ │ │ ├── favicon.ico │ │ │ ├── forward_disabled.png │ │ │ ├── forward_enabled.png │ │ │ ├── forward_enabled_hover.png │ │ │ ├── sort_asc.png │ │ │ ├── sort_asc_disabled.png │ │ │ ├── sort_both.png │ │ │ ├── sort_desc.png │ │ │ └── sort_desc_disabled.png │ │ │ └── js │ │ │ ├── jquery.dataTables.js │ │ │ ├── jquery.dataTables.min.js │ │ │ └── jquery.js │ │ ├── dropzone │ │ ├── .bower.json │ │ ├── bower.json │ │ └── dist │ │ │ ├── basic.css │ │ │ ├── dropzone-amd-module.js │ │ │ ├── dropzone.css │ │ │ ├── dropzone.js │ │ │ ├── min │ │ │ ├── basic.min.css │ │ │ ├── dropzone-amd-module.min.js │ │ │ ├── dropzone.min.css │ │ │ └── dropzone.min.js │ │ │ └── readme.md │ │ ├── es5-shim │ │ ├── .bower.json │ │ ├── CHANGES │ │ ├── CONTRIBUTORS.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── es5-sham.js │ │ ├── es5-sham.map │ │ ├── es5-sham.min.js │ │ ├── es5-shim.js │ │ ├── es5-shim.map │ │ ├── es5-shim.min.js │ │ ├── package.json │ │ └── shims.json │ │ ├── flot-spline │ │ ├── .bower.json │ │ ├── bower.json │ │ └── js │ │ │ ├── jquery.flot.spline.js │ │ │ └── jquery.flot.spline.min.js │ │ ├── flot.orderbars │ │ ├── .bower.json │ │ ├── README.md │ │ ├── examples │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── flot │ │ │ │ ├── flot.js │ │ │ │ └── stack.js │ │ │ │ ├── main.js │ │ │ │ └── vendor │ │ │ │ └── jquery-1.9.1.min.js │ │ └── js │ │ │ └── jquery.flot.orderBars.js │ │ ├── flot.tooltip │ │ ├── .bower.json │ │ ├── bower.json │ │ └── js │ │ │ ├── excanvas.min.js │ │ │ ├── jquery.flot.js │ │ │ ├── jquery.flot.tooltip.js │ │ │ ├── jquery.flot.tooltip.min.js │ │ │ └── jquery.flot.tooltip.source.js │ │ ├── flot │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── API.md │ │ ├── CONTRIBUTING.md │ │ ├── FAQ.md │ │ ├── LICENSE.txt │ │ ├── Makefile │ │ ├── NEWS.md │ │ ├── PLUGINS.md │ │ ├── README.md │ │ ├── component.json │ │ ├── examples │ │ │ ├── ajax │ │ │ │ ├── data-eu-gdp-growth-1.json │ │ │ │ ├── data-eu-gdp-growth-2.json │ │ │ │ ├── data-eu-gdp-growth-3.json │ │ │ │ ├── data-eu-gdp-growth-4.json │ │ │ │ ├── data-eu-gdp-growth-5.json │ │ │ │ ├── data-eu-gdp-growth.json │ │ │ │ ├── data-japan-gdp-growth.json │ │ │ │ ├── data-usa-gdp-growth.json │ │ │ │ └── index.html │ │ │ ├── annotating │ │ │ │ └── index.html │ │ │ ├── axes-interacting │ │ │ │ └── index.html │ │ │ ├── axes-multiple │ │ │ │ └── index.html │ │ │ ├── axes-time-zones │ │ │ │ ├── date.js │ │ │ │ ├── index.html │ │ │ │ └── tz │ │ │ │ │ ├── africa │ │ │ │ │ ├── antarctica │ │ │ │ │ ├── asia │ │ │ │ │ ├── australasia │ │ │ │ │ ├── backward │ │ │ │ │ ├── etcetera │ │ │ │ │ ├── europe │ │ │ │ │ ├── factory │ │ │ │ │ ├── iso3166.tab │ │ │ │ │ ├── leapseconds │ │ │ │ │ ├── northamerica │ │ │ │ │ ├── pacificnew │ │ │ │ │ ├── solar87 │ │ │ │ │ ├── solar88 │ │ │ │ │ ├── solar89 │ │ │ │ │ ├── southamerica │ │ │ │ │ ├── systemv │ │ │ │ │ ├── yearistype.sh │ │ │ │ │ └── zone.tab │ │ │ ├── axes-time │ │ │ │ └── index.html │ │ │ ├── background.png │ │ │ ├── basic-options │ │ │ │ └── index.html │ │ │ ├── basic-usage │ │ │ │ └── index.html │ │ │ ├── canvas │ │ │ │ └── index.html │ │ │ ├── categories │ │ │ │ └── index.html │ │ │ ├── examples.css │ │ │ ├── image │ │ │ │ ├── hs-2004-27-a-large-web.jpg │ │ │ │ └── index.html │ │ │ ├── index.html │ │ │ ├── interacting │ │ │ │ └── index.html │ │ │ ├── navigate │ │ │ │ ├── arrow-down.gif │ │ │ │ ├── arrow-left.gif │ │ │ │ ├── arrow-right.gif │ │ │ │ ├── arrow-up.gif │ │ │ │ └── index.html │ │ │ ├── percentiles │ │ │ │ └── index.html │ │ │ ├── realtime │ │ │ │ └── index.html │ │ │ ├── resize │ │ │ │ └── index.html │ │ │ ├── selection │ │ │ │ └── index.html │ │ │ ├── series-errorbars │ │ │ │ └── index.html │ │ │ ├── series-pie │ │ │ │ └── index.html │ │ │ ├── series-toggle │ │ │ │ └── index.html │ │ │ ├── series-types │ │ │ │ └── index.html │ │ │ ├── shared │ │ │ │ └── jquery-ui │ │ │ │ │ └── jquery-ui.min.css │ │ │ ├── stacking │ │ │ │ └── index.html │ │ │ ├── symbols │ │ │ │ └── index.html │ │ │ ├── threshold │ │ │ │ └── index.html │ │ │ ├── tracking │ │ │ │ └── index.html │ │ │ ├── visitors │ │ │ │ └── index.html │ │ │ └── zooming │ │ │ │ └── index.html │ │ ├── excanvas.js │ │ ├── excanvas.min.js │ │ ├── flot.jquery.json │ │ ├── jquery.colorhelpers.js │ │ ├── jquery.flot.canvas.js │ │ ├── jquery.flot.categories.js │ │ ├── jquery.flot.crosshair.js │ │ ├── jquery.flot.errorbars.js │ │ ├── jquery.flot.fillbetween.js │ │ ├── jquery.flot.image.js │ │ ├── jquery.flot.js │ │ ├── jquery.flot.navigate.js │ │ ├── jquery.flot.pie.js │ │ ├── jquery.flot.resize.js │ │ ├── jquery.flot.selection.js │ │ ├── jquery.flot.stack.js │ │ ├── jquery.flot.symbol.js │ │ ├── jquery.flot.threshold.js │ │ ├── jquery.flot.time.js │ │ ├── jquery.js │ │ └── package.json │ │ ├── font-awesome │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .npmignore │ │ ├── bower.json │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── less │ │ │ ├── animated.less │ │ │ ├── bordered-pulled.less │ │ │ ├── core.less │ │ │ ├── fixed-width.less │ │ │ ├── font-awesome.less │ │ │ ├── icons.less │ │ │ ├── larger.less │ │ │ ├── list.less │ │ │ ├── mixins.less │ │ │ ├── path.less │ │ │ ├── rotated-flipped.less │ │ │ ├── stacked.less │ │ │ └── variables.less │ │ └── scss │ │ │ ├── _animated.scss │ │ │ ├── _bordered-pulled.scss │ │ │ ├── _core.scss │ │ │ ├── _fixed-width.scss │ │ │ ├── _icons.scss │ │ │ ├── _larger.scss │ │ │ ├── _list.scss │ │ │ ├── _mixins.scss │ │ │ ├── _path.scss │ │ │ ├── _rotated-flipped.scss │ │ │ ├── _stacked.scss │ │ │ ├── _variables.scss │ │ │ └── font-awesome.scss │ │ ├── footable │ │ ├── .bower.json │ │ ├── .csslintrc │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── css │ │ │ ├── fonts │ │ │ │ ├── footable.eot │ │ │ │ ├── footable.svg │ │ │ │ ├── footable.ttf │ │ │ │ └── footable.woff │ │ │ ├── footable.core.css │ │ │ ├── footable.core.min.css │ │ │ ├── footable.metro.css │ │ │ ├── footable.metro.min.css │ │ │ ├── footable.standalone.css │ │ │ └── footable.standalone.min.css │ │ ├── demos │ │ │ ├── accordion.htm │ │ │ ├── add-delete-row.htm │ │ │ ├── ajax-redraw.htm │ │ │ ├── ajax.htm │ │ │ ├── api.htm │ │ │ ├── arbitrary_toggle_markup.htm │ │ │ ├── auto-expand-first-row-on-breakpoint.htm │ │ │ ├── bookmarkable.htm │ │ │ ├── bug-fixes │ │ │ │ ├── bug-data-ignore.htm │ │ │ │ ├── bug-remove-unneeded-detail-row-click.htm │ │ │ │ └── bug-unused-breakpoints.htm │ │ │ ├── css │ │ │ │ ├── arbitrary_toggle_markup.css │ │ │ │ ├── bootstrap-glyphicons.css │ │ │ │ ├── bootstrap-responsive.css │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrapSwitch.css │ │ │ │ └── footable-demos.css │ │ │ ├── data-attributes.htm │ │ │ ├── demo-template.htm │ │ │ ├── editable-columns.htm │ │ │ ├── event-interception.htm │ │ │ ├── events.htm │ │ │ ├── expand-collapse-all.htm │ │ │ ├── filtering.htm │ │ │ ├── fonts │ │ │ │ ├── glyphiconshalflings-regular.eot │ │ │ │ ├── glyphiconshalflings-regular.otf │ │ │ │ ├── glyphiconshalflings-regular.svg │ │ │ │ ├── glyphiconshalflings-regular.ttf │ │ │ │ └── glyphiconshalflings-regular.woff │ │ │ ├── getting-started.htm │ │ │ ├── grid.htm │ │ │ ├── group-headers.htm │ │ │ ├── hidden-columns.htm │ │ │ ├── icon-styles.htm │ │ │ ├── img │ │ │ │ ├── footable.png │ │ │ │ ├── minus.png │ │ │ │ └── plus.png │ │ │ ├── index.htm │ │ │ ├── js │ │ │ │ ├── bootstrap-tab.js │ │ │ │ ├── bootstrapSwitch.js │ │ │ │ ├── data-generator.js │ │ │ │ ├── demos.js │ │ │ │ ├── jquery-1.9.1.min.js │ │ │ │ ├── jquery.mockjax.js │ │ │ │ └── mustache.js │ │ │ ├── metro-theme.htm │ │ │ ├── multiple-showcases.htm │ │ │ ├── old-theme.htm │ │ │ ├── paging.htm │ │ │ ├── reset.htm │ │ │ ├── row-toggle.htm │ │ │ ├── showcase.htm │ │ │ ├── sorting.htm │ │ │ ├── striping.htm │ │ │ ├── todo │ │ │ │ ├── column-groupings.htm │ │ │ │ ├── demo-ajax-with-mustache.htm │ │ │ │ ├── demo-bootstrapSwitch.htm │ │ │ │ ├── demo-colspan.htm │ │ │ │ ├── demo-widthHeightOverride.htm │ │ │ │ └── demo-zebra.htm │ │ │ └── triggers.htm │ │ ├── dist │ │ │ ├── footable.all.min.js │ │ │ ├── footable.bookmarkable.min.js │ │ │ ├── footable.filter.min.js │ │ │ ├── footable.grid.min.js │ │ │ ├── footable.min.js │ │ │ ├── footable.paginate.min.js │ │ │ ├── footable.sort.min.js │ │ │ └── footable.striping.min.js │ │ ├── footable.jquery.json │ │ ├── icomoon │ │ │ └── footable.json │ │ ├── js │ │ │ ├── .jshintrc │ │ │ ├── footable.bookmarkable.js │ │ │ ├── footable.filter.js │ │ │ ├── footable.grid.js │ │ │ ├── footable.js │ │ │ ├── footable.memory.js │ │ │ ├── footable.paginate.js │ │ │ ├── footable.plugin.template.js │ │ │ ├── footable.sort.js │ │ │ └── footable.striping.js │ │ ├── less │ │ │ ├── footable.core.less │ │ │ ├── footable.metro.less │ │ │ └── footable.standalone.less │ │ ├── package.json │ │ ├── screenshot.jpg │ │ └── screenshot.pdn │ │ ├── fullcalendar │ │ ├── .bower.json │ │ ├── bower.json │ │ ├── changelog.md │ │ ├── dist │ │ │ ├── fullcalendar.css │ │ │ ├── fullcalendar.js │ │ │ ├── fullcalendar.min.css │ │ │ ├── fullcalendar.min.js │ │ │ ├── fullcalendar.print.css │ │ │ ├── fullcalendar.theme.css │ │ │ ├── gcal.js │ │ │ ├── lang-all.js │ │ │ └── lang │ │ │ │ ├── ar-ma.js │ │ │ │ ├── ar-sa.js │ │ │ │ ├── ar-tn.js │ │ │ │ ├── ar.js │ │ │ │ ├── bg.js │ │ │ │ ├── ca.js │ │ │ │ ├── cs.js │ │ │ │ ├── da.js │ │ │ │ ├── de-at.js │ │ │ │ ├── de.js │ │ │ │ ├── el.js │ │ │ │ ├── en-au.js │ │ │ │ ├── en-ca.js │ │ │ │ ├── en-gb.js │ │ │ │ ├── es.js │ │ │ │ ├── fa.js │ │ │ │ ├── fi.js │ │ │ │ ├── fr-ca.js │ │ │ │ ├── fr.js │ │ │ │ ├── he.js │ │ │ │ ├── hi.js │ │ │ │ ├── hr.js │ │ │ │ ├── hu.js │ │ │ │ ├── id.js │ │ │ │ ├── is.js │ │ │ │ ├── it.js │ │ │ │ ├── ja.js │ │ │ │ ├── ko.js │ │ │ │ ├── lt.js │ │ │ │ ├── lv.js │ │ │ │ ├── nl.js │ │ │ │ ├── pl.js │ │ │ │ ├── pt-br.js │ │ │ │ ├── pt.js │ │ │ │ ├── ro.js │ │ │ │ ├── ru.js │ │ │ │ ├── sk.js │ │ │ │ ├── sl.js │ │ │ │ ├── sr-cyrl.js │ │ │ │ ├── sr.js │ │ │ │ ├── sv.js │ │ │ │ ├── th.js │ │ │ │ ├── tr.js │ │ │ │ ├── uk.js │ │ │ │ ├── vi.js │ │ │ │ ├── zh-cn.js │ │ │ │ └── zh-tw.js │ │ ├── license.txt │ │ └── readme.md │ │ ├── html5sortable │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── index.html │ │ ├── jquery.sortable.js │ │ └── jquery.sortable.min.js │ │ ├── jquery-ui │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── AUTHORS.txt │ │ ├── MIT-LICENSE.txt │ │ ├── README.md │ │ ├── bower.json │ │ ├── component.json │ │ ├── composer.json │ │ ├── package.json │ │ ├── themes │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery.ui.accordion.css │ │ │ │ ├── jquery.ui.all.css │ │ │ │ ├── jquery.ui.autocomplete.css │ │ │ │ ├── jquery.ui.base.css │ │ │ │ ├── jquery.ui.button.css │ │ │ │ ├── jquery.ui.core.css │ │ │ │ ├── jquery.ui.datepicker.css │ │ │ │ ├── jquery.ui.dialog.css │ │ │ │ ├── jquery.ui.menu.css │ │ │ │ ├── jquery.ui.progressbar.css │ │ │ │ ├── jquery.ui.resizable.css │ │ │ │ ├── jquery.ui.selectable.css │ │ │ │ ├── jquery.ui.slider.css │ │ │ │ ├── jquery.ui.spinner.css │ │ │ │ ├── jquery.ui.tabs.css │ │ │ │ ├── jquery.ui.theme.css │ │ │ │ ├── jquery.ui.tooltip.css │ │ │ │ └── minified │ │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── jquery-ui.min.css │ │ │ │ │ ├── jquery.ui.accordion.min.css │ │ │ │ │ ├── jquery.ui.autocomplete.min.css │ │ │ │ │ ├── jquery.ui.button.min.css │ │ │ │ │ ├── jquery.ui.core.min.css │ │ │ │ │ ├── jquery.ui.datepicker.min.css │ │ │ │ │ ├── jquery.ui.dialog.min.css │ │ │ │ │ ├── jquery.ui.menu.min.css │ │ │ │ │ ├── jquery.ui.progressbar.min.css │ │ │ │ │ ├── jquery.ui.resizable.min.css │ │ │ │ │ ├── jquery.ui.selectable.min.css │ │ │ │ │ ├── jquery.ui.slider.min.css │ │ │ │ │ ├── jquery.ui.spinner.min.css │ │ │ │ │ ├── jquery.ui.tabs.min.css │ │ │ │ │ ├── jquery.ui.theme.min.css │ │ │ │ │ └── jquery.ui.tooltip.min.css │ │ │ ├── black-tie │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_8_333333_40x40.png │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_111111_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_1c1c1c_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f9f9f9_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_40_aaaaaa_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_aaaaaa_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_45_cd0a0a_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_55_ffeb80_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4ca300_256x240.png │ │ │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ │ │ ├── ui-icons_ededed_256x240.png │ │ │ │ │ ├── ui-icons_ffcf29_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── blitzer │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_75_f3d8d8_40x40.png │ │ │ │ │ ├── ui-bg_dots-small_65_a6a6a6_2x2.png │ │ │ │ │ ├── ui-bg_flat_0_333333_40x100.png │ │ │ │ │ ├── ui-bg_flat_65_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf8ee_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f6f6f6_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_15_cc0000_1x100.png │ │ │ │ │ ├── ui-icons_004276_256x240.png │ │ │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── cupertino │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_90_eeeeee_40x40.png │ │ │ │ │ ├── ui-bg_flat_15_cd0a0a_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_e4f1fb_1x400.png │ │ │ │ │ ├── ui-bg_glass_50_3baae3_1x400.png │ │ │ │ │ ├── ui-bg_glass_80_d7ebf9_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f2f5f7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_70_000000_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_deedf7_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_ffef8f_1x100.png │ │ │ │ │ ├── ui-icons_2694e8_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_3d80b3_256x240.png │ │ │ │ │ ├── ui-icons_72a7cf_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── dark-hive │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_20_0972a5_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_33_003147_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_35_222222_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_44_444444_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_loop_25_000000_21x21.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── dot-luv │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_15_0b3e6f_40x40.png │ │ │ │ │ ├── ui-bg_dots-medium_30_0b58a2_4x4.png │ │ │ │ │ ├── ui-bg_dots-small_20_333333_2x2.png │ │ │ │ │ ├── ui-bg_dots-small_30_a32d00_2x2.png │ │ │ │ │ ├── ui-bg_dots-small_40_00498f_2x2.png │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_40_292929_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_20_111111_500x100.png │ │ │ │ │ ├── ui-icons_00498f_256x240.png │ │ │ │ │ ├── ui-icons_98d2fb_256x240.png │ │ │ │ │ ├── ui-icons_9ccdfc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── eggplant │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_994d53_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_fafafa_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_30_3d3644_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_dcd9de_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eae6ea_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_30273a_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_45_5f5964_1x100.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_734d99_256x240.png │ │ │ │ │ ├── ui-icons_8d78a5_256x240.png │ │ │ │ │ ├── ui-icons_a8a3ae_256x240.png │ │ │ │ │ ├── ui-icons_ebccce_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── excite-bike │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_25_c5ddfc_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_e69700_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_22_1484e6_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_26_2293f7_40x40.png │ │ │ │ │ ├── ui-bg_flat_0_e69700_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_e6b900_40x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_f9f9f9_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-icons_0a82eb_256x240.png │ │ │ │ │ ├── ui-icons_0b54d5_256x240.png │ │ │ │ │ ├── ui-icons_5fa5e3_256x240.png │ │ │ │ │ ├── ui-icons_fcdd4a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── flick │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_f6f6f6_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_0073ea_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_dddddd_1x100.png │ │ │ │ │ ├── ui-icons_0073ea_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ │ ├── ui-icons_ff0084_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── hot-sneaks │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_40_db4865_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_50_93c3cd_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_50_ff3853_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-small_75_ccd232_40x40.png │ │ │ │ │ ├── ui-bg_dots-medium_80_ffff38_4x4.png │ │ │ │ │ ├── ui-bg_dots-small_35_35414f_2x2.png │ │ │ │ │ ├── ui-bg_flat_75_ba9217_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_white-lines_85_f7f7ba_40x100.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_88a206_256x240.png │ │ │ │ │ ├── ui-icons_c02669_256x240.png │ │ │ │ │ ├── ui-icons_e1e463_256x240.png │ │ │ │ │ ├── ui-icons_ffeb33_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── humanity │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f5f0e5_1x400.png │ │ │ │ │ ├── ui-bg_glass_25_cb842e_1x400.png │ │ │ │ │ ├── ui-bg_glass_70_ede4d4_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f4f0ec_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_75_f5f5b5_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_100_f4f0ec_1x100.png │ │ │ │ │ ├── ui-icons_c47a23_256x240.png │ │ │ │ │ ├── ui-icons_cb672b_256x240.png │ │ │ │ │ ├── ui-icons_f08000_256x240.png │ │ │ │ │ ├── ui-icons_f35f07_256x240.png │ │ │ │ │ ├── ui-icons_ff7519_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── le-frog │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_0_aaaaaa_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_15_444444_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_95_ffdc2e_40x40.png │ │ │ │ │ ├── ui-bg_glass_55_fbf5d0_1x400.png │ │ │ │ │ ├── ui-bg_highlight-hard_30_285c00_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_33_3a8104_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_50_4eb305_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_60_4ca20b_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_10_285c00_1x100.png │ │ │ │ │ ├── ui-icons_4eb305_256x240.png │ │ │ │ │ ├── ui-icons_72b42d_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── mint-choc │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_15_5f391b_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_20_1c160d_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_25_453326_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_30_44372c_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_20_201913_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_20_619226_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_10_201913_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_9bcc60_256x240.png │ │ │ │ │ ├── ui-icons_add978_256x240.png │ │ │ │ │ ├── ui-icons_e3ddc9_256x240.png │ │ │ │ │ ├── ui-icons_f1fd86_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── overcast │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_c0402a_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_eeeeee_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f8f8f8_1x400.png │ │ │ │ │ ├── ui-bg_glass_35_dddddd_1x400.png │ │ │ │ │ ├── ui-bg_glass_60_eeeeee_1x400.png │ │ │ │ │ ├── ui-bg_inset-hard_75_999999_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_50_c9c9c9_1x100.png │ │ │ │ │ ├── ui-icons_3383bb_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_70b2e1_256x240.png │ │ │ │ │ ├── ui-icons_999999_256x240.png │ │ │ │ │ └── ui-icons_fbc856_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── pepper-grinder │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonal-maze_20_6e4f1c_10x10.png │ │ │ │ │ ├── ui-bg_diagonal-maze_40_000000_10x10.png │ │ │ │ │ ├── ui-bg_fine-grain_10_eceadf_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_10_f8f7f6_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_15_eceadf_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_15_f7f3de_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_15_ffffff_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_65_654b24_60x60.png │ │ │ │ │ ├── ui-bg_fine-grain_68_b83400_60x60.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_3572ac_256x240.png │ │ │ │ │ ├── ui-icons_8c291d_256x240.png │ │ │ │ │ ├── ui-icons_b83400_256x240.png │ │ │ │ │ ├── ui-icons_fbdb93_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── redmond │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_55_fbec88_40x100.png │ │ │ │ │ ├── ui-bg_glass_75_d0e5f5_1x400.png │ │ │ │ │ ├── ui-bg_glass_85_dfeffc_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_55_5c9ccc_500x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_f5f8f9_1x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ ├── ui-icons_217bc0_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_469bdd_256x240.png │ │ │ │ │ ├── ui-icons_6da8d5_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ └── ui-icons_f9bd01_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── smoothness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── south-street │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_glass_55_fcf0ba_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_100_ece8da_500x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_f5f3e5_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_100_fafaf4_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_15_459e00_1x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_95_cccccc_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_25_67b021_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_95_ffedad_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_15_2b2922_1x100.png │ │ │ │ │ ├── ui-icons_808080_256x240.png │ │ │ │ │ ├── ui-icons_847e71_256x240.png │ │ │ │ │ ├── ui-icons_8DC262_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ ├── ui-icons_eeeeee_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── start │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_55_999999_40x100.png │ │ │ │ │ ├── ui-bg_flat_75_aaaaaa_40x100.png │ │ │ │ │ ├── ui-bg_glass_45_0078ae_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_f8da4e_1x400.png │ │ │ │ │ ├── ui-bg_glass_75_79c9ec_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_45_e14f1c_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_50_6eac2c_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_75_2191c0_500x100.png │ │ │ │ │ ├── ui-bg_inset-hard_100_fcfdfd_1x100.png │ │ │ │ │ ├── ui-icons_0078ae_256x240.png │ │ │ │ │ ├── ui-icons_056b93_256x240.png │ │ │ │ │ ├── ui-icons_d8e7f3_256x240.png │ │ │ │ │ ├── ui-icons_e0fdff_256x240.png │ │ │ │ │ ├── ui-icons_f5e175_256x240.png │ │ │ │ │ ├── ui-icons_f7a50d_256x240.png │ │ │ │ │ └── ui-icons_fcd113_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── sunny │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-medium_20_d34d17_40x40.png │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_45_817865_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_60_fece2f_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_70_ffdd57_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_90_fff9e5_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_feeebd_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_30_ffffff_1x100.png │ │ │ │ │ ├── ui-icons_3d3d3d_256x240.png │ │ │ │ │ ├── ui-icons_bd7b00_256x240.png │ │ │ │ │ ├── ui-icons_d19405_256x240.png │ │ │ │ │ ├── ui-icons_eb990f_256x240.png │ │ │ │ │ ├── ui-icons_ed9f26_256x240.png │ │ │ │ │ ├── ui-icons_fadc7a_256x240.png │ │ │ │ │ └── ui-icons_ffe180_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── swanky-purse │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diamond_10_4f4221_10x8.png │ │ │ │ │ ├── ui-bg_diamond_20_372806_10x8.png │ │ │ │ │ ├── ui-bg_diamond_25_675423_10x8.png │ │ │ │ │ ├── ui-bg_diamond_25_d5ac5d_10x8.png │ │ │ │ │ ├── ui-bg_diamond_8_261803_10x8.png │ │ │ │ │ ├── ui-bg_diamond_8_443113_10x8.png │ │ │ │ │ ├── ui-bg_flat_75_ddd4b0_40x100.png │ │ │ │ │ ├── ui-bg_highlight-hard_65_fee4bd_1x100.png │ │ │ │ │ ├── ui-icons_070603_256x240.png │ │ │ │ │ ├── ui-icons_e8e2b5_256x240.png │ │ │ │ │ ├── ui-icons_e9cd86_256x240.png │ │ │ │ │ ├── ui-icons_efec9f_256x240.png │ │ │ │ │ ├── ui-icons_f2ec64_256x240.png │ │ │ │ │ ├── ui-icons_f9f2bd_256x240.png │ │ │ │ │ └── ui-icons_ff7519_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── trontastic │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-small_50_262626_40x40.png │ │ │ │ │ ├── ui-bg_flat_0_303030_40x100.png │ │ │ │ │ ├── ui-bg_flat_0_4c4c4c_40x100.png │ │ │ │ │ ├── ui-bg_glass_40_0a0a0a_1x400.png │ │ │ │ │ ├── ui-bg_glass_55_f1fbe5_1x400.png │ │ │ │ │ ├── ui-bg_glass_60_000000_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_55_000000_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_85_9fda58_500x100.png │ │ │ │ │ ├── ui-bg_gloss-wave_95_f6ecd5_500x100.png │ │ │ │ │ ├── ui-icons_000000_256x240.png │ │ │ │ │ ├── ui-icons_1f1f1f_256x240.png │ │ │ │ │ ├── ui-icons_9fda58_256x240.png │ │ │ │ │ ├── ui-icons_b8ec79_256x240.png │ │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── ui-darkness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_flat_30_cccccc_40x100.png │ │ │ │ │ ├── ui-bg_flat_50_5c5c5c_40x100.png │ │ │ │ │ ├── ui-bg_glass_20_555555_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_0078a3_1x400.png │ │ │ │ │ ├── ui-bg_glass_40_ffc73d_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_25_333333_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_80_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_25_000000_1x100.png │ │ │ │ │ ├── ui-bg_inset-soft_30_f58400_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_4b8e0b_256x240.png │ │ │ │ │ ├── ui-icons_a83300_256x240.png │ │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ ├── ui-lightness │ │ │ │ ├── images │ │ │ │ │ ├── animated-overlay.gif │ │ │ │ │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ │ │ │ │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ │ │ │ │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ │ │ │ │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ ├── ui-icons_ef8c08_256x240.png │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ │ └── vader │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_gloss-wave_16_121212_500x100.png │ │ │ │ ├── ui-bg_highlight-hard_15_888888_1x100.png │ │ │ │ ├── ui-bg_highlight-hard_55_555555_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_35_adadad_1x100.png │ │ │ │ ├── ui-bg_highlight-soft_60_dddddd_1x100.png │ │ │ │ ├── ui-bg_inset-soft_15_121212_1x100.png │ │ │ │ ├── ui-icons_666666_256x240.png │ │ │ │ ├── ui-icons_aaaaaa_256x240.png │ │ │ │ ├── ui-icons_bbbbbb_256x240.png │ │ │ │ ├── ui-icons_c98000_256x240.png │ │ │ │ ├── ui-icons_cccccc_256x240.png │ │ │ │ ├── ui-icons_cd0a0a_256x240.png │ │ │ │ └── ui-icons_f29a00_256x240.png │ │ │ │ ├── jquery-ui.css │ │ │ │ ├── jquery-ui.min.css │ │ │ │ └── jquery.ui.theme.css │ │ └── ui │ │ │ ├── .jshintrc │ │ │ ├── i18n │ │ │ ├── jquery-ui-i18n.js │ │ │ ├── jquery.ui.datepicker-af.js │ │ │ ├── jquery.ui.datepicker-ar-DZ.js │ │ │ ├── jquery.ui.datepicker-ar.js │ │ │ ├── jquery.ui.datepicker-az.js │ │ │ ├── jquery.ui.datepicker-be.js │ │ │ ├── jquery.ui.datepicker-bg.js │ │ │ ├── jquery.ui.datepicker-bs.js │ │ │ ├── jquery.ui.datepicker-ca.js │ │ │ ├── jquery.ui.datepicker-cs.js │ │ │ ├── jquery.ui.datepicker-cy-GB.js │ │ │ ├── jquery.ui.datepicker-da.js │ │ │ ├── jquery.ui.datepicker-de.js │ │ │ ├── jquery.ui.datepicker-el.js │ │ │ ├── jquery.ui.datepicker-en-AU.js │ │ │ ├── jquery.ui.datepicker-en-GB.js │ │ │ ├── jquery.ui.datepicker-en-NZ.js │ │ │ ├── jquery.ui.datepicker-eo.js │ │ │ ├── jquery.ui.datepicker-es.js │ │ │ ├── jquery.ui.datepicker-et.js │ │ │ ├── jquery.ui.datepicker-eu.js │ │ │ ├── jquery.ui.datepicker-fa.js │ │ │ ├── jquery.ui.datepicker-fi.js │ │ │ ├── jquery.ui.datepicker-fo.js │ │ │ ├── jquery.ui.datepicker-fr-CA.js │ │ │ ├── jquery.ui.datepicker-fr-CH.js │ │ │ ├── jquery.ui.datepicker-fr.js │ │ │ ├── jquery.ui.datepicker-gl.js │ │ │ ├── jquery.ui.datepicker-he.js │ │ │ ├── jquery.ui.datepicker-hi.js │ │ │ ├── jquery.ui.datepicker-hr.js │ │ │ ├── jquery.ui.datepicker-hu.js │ │ │ ├── jquery.ui.datepicker-hy.js │ │ │ ├── jquery.ui.datepicker-id.js │ │ │ ├── jquery.ui.datepicker-is.js │ │ │ ├── jquery.ui.datepicker-it.js │ │ │ ├── jquery.ui.datepicker-ja.js │ │ │ ├── jquery.ui.datepicker-ka.js │ │ │ ├── jquery.ui.datepicker-kk.js │ │ │ ├── jquery.ui.datepicker-km.js │ │ │ ├── jquery.ui.datepicker-ko.js │ │ │ ├── jquery.ui.datepicker-ky.js │ │ │ ├── jquery.ui.datepicker-lb.js │ │ │ ├── jquery.ui.datepicker-lt.js │ │ │ ├── jquery.ui.datepicker-lv.js │ │ │ ├── jquery.ui.datepicker-mk.js │ │ │ ├── jquery.ui.datepicker-ml.js │ │ │ ├── jquery.ui.datepicker-ms.js │ │ │ ├── jquery.ui.datepicker-nb.js │ │ │ ├── jquery.ui.datepicker-nl-BE.js │ │ │ ├── jquery.ui.datepicker-nl.js │ │ │ ├── jquery.ui.datepicker-nn.js │ │ │ ├── jquery.ui.datepicker-no.js │ │ │ ├── jquery.ui.datepicker-pl.js │ │ │ ├── jquery.ui.datepicker-pt-BR.js │ │ │ ├── jquery.ui.datepicker-pt.js │ │ │ ├── jquery.ui.datepicker-rm.js │ │ │ ├── jquery.ui.datepicker-ro.js │ │ │ ├── jquery.ui.datepicker-ru.js │ │ │ ├── jquery.ui.datepicker-sk.js │ │ │ ├── jquery.ui.datepicker-sl.js │ │ │ ├── jquery.ui.datepicker-sq.js │ │ │ ├── jquery.ui.datepicker-sr-SR.js │ │ │ ├── jquery.ui.datepicker-sr.js │ │ │ ├── jquery.ui.datepicker-sv.js │ │ │ ├── jquery.ui.datepicker-ta.js │ │ │ ├── jquery.ui.datepicker-th.js │ │ │ ├── jquery.ui.datepicker-tj.js │ │ │ ├── jquery.ui.datepicker-tr.js │ │ │ ├── jquery.ui.datepicker-uk.js │ │ │ ├── jquery.ui.datepicker-vi.js │ │ │ ├── jquery.ui.datepicker-zh-CN.js │ │ │ ├── jquery.ui.datepicker-zh-HK.js │ │ │ └── jquery.ui.datepicker-zh-TW.js │ │ │ ├── jquery-ui.custom.js │ │ │ ├── jquery-ui.js │ │ │ ├── jquery.ui.accordion.js │ │ │ ├── jquery.ui.autocomplete.js │ │ │ ├── jquery.ui.button.js │ │ │ ├── jquery.ui.core.js │ │ │ ├── jquery.ui.datepicker.js │ │ │ ├── jquery.ui.dialog.js │ │ │ ├── jquery.ui.draggable.js │ │ │ ├── jquery.ui.droppable.js │ │ │ ├── jquery.ui.effect-blind.js │ │ │ ├── jquery.ui.effect-bounce.js │ │ │ ├── jquery.ui.effect-clip.js │ │ │ ├── jquery.ui.effect-drop.js │ │ │ ├── jquery.ui.effect-explode.js │ │ │ ├── jquery.ui.effect-fade.js │ │ │ ├── jquery.ui.effect-fold.js │ │ │ ├── jquery.ui.effect-highlight.js │ │ │ ├── jquery.ui.effect-pulsate.js │ │ │ ├── jquery.ui.effect-scale.js │ │ │ ├── jquery.ui.effect-shake.js │ │ │ ├── jquery.ui.effect-slide.js │ │ │ ├── jquery.ui.effect-transfer.js │ │ │ ├── jquery.ui.effect.js │ │ │ ├── jquery.ui.menu.js │ │ │ ├── jquery.ui.mouse.js │ │ │ ├── jquery.ui.position.js │ │ │ ├── jquery.ui.progressbar.js │ │ │ ├── jquery.ui.resizable.js │ │ │ ├── jquery.ui.selectable.js │ │ │ ├── jquery.ui.slider.js │ │ │ ├── jquery.ui.sortable.js │ │ │ ├── jquery.ui.spinner.js │ │ │ ├── jquery.ui.tabs.js │ │ │ ├── jquery.ui.tooltip.js │ │ │ ├── jquery.ui.widget.js │ │ │ └── minified │ │ │ ├── i18n │ │ │ ├── jquery-ui-i18n.min.js │ │ │ ├── jquery.ui.datepicker-af.min.js │ │ │ ├── jquery.ui.datepicker-ar-DZ.min.js │ │ │ ├── jquery.ui.datepicker-ar.min.js │ │ │ ├── jquery.ui.datepicker-az.min.js │ │ │ ├── jquery.ui.datepicker-be.min.js │ │ │ ├── jquery.ui.datepicker-bg.min.js │ │ │ ├── jquery.ui.datepicker-bs.min.js │ │ │ ├── jquery.ui.datepicker-ca.min.js │ │ │ ├── jquery.ui.datepicker-cs.min.js │ │ │ ├── jquery.ui.datepicker-cy-GB.min.js │ │ │ ├── jquery.ui.datepicker-da.min.js │ │ │ ├── jquery.ui.datepicker-de.min.js │ │ │ ├── jquery.ui.datepicker-el.min.js │ │ │ ├── jquery.ui.datepicker-en-AU.min.js │ │ │ ├── jquery.ui.datepicker-en-GB.min.js │ │ │ ├── jquery.ui.datepicker-en-NZ.min.js │ │ │ ├── jquery.ui.datepicker-eo.min.js │ │ │ ├── jquery.ui.datepicker-es.min.js │ │ │ ├── jquery.ui.datepicker-et.min.js │ │ │ ├── jquery.ui.datepicker-eu.min.js │ │ │ ├── jquery.ui.datepicker-fa.min.js │ │ │ ├── jquery.ui.datepicker-fi.min.js │ │ │ ├── jquery.ui.datepicker-fo.min.js │ │ │ ├── jquery.ui.datepicker-fr-CA.min.js │ │ │ ├── jquery.ui.datepicker-fr-CH.min.js │ │ │ ├── jquery.ui.datepicker-fr.min.js │ │ │ ├── jquery.ui.datepicker-gl.min.js │ │ │ ├── jquery.ui.datepicker-he.min.js │ │ │ ├── jquery.ui.datepicker-hi.min.js │ │ │ ├── jquery.ui.datepicker-hr.min.js │ │ │ ├── jquery.ui.datepicker-hu.min.js │ │ │ ├── jquery.ui.datepicker-hy.min.js │ │ │ ├── jquery.ui.datepicker-id.min.js │ │ │ ├── jquery.ui.datepicker-is.min.js │ │ │ ├── jquery.ui.datepicker-it.min.js │ │ │ ├── jquery.ui.datepicker-ja.min.js │ │ │ ├── jquery.ui.datepicker-ka.min.js │ │ │ ├── jquery.ui.datepicker-kk.min.js │ │ │ ├── jquery.ui.datepicker-km.min.js │ │ │ ├── jquery.ui.datepicker-ko.min.js │ │ │ ├── jquery.ui.datepicker-ky.min.js │ │ │ ├── jquery.ui.datepicker-lb.min.js │ │ │ ├── jquery.ui.datepicker-lt.min.js │ │ │ ├── jquery.ui.datepicker-lv.min.js │ │ │ ├── jquery.ui.datepicker-mk.min.js │ │ │ ├── jquery.ui.datepicker-ml.min.js │ │ │ ├── jquery.ui.datepicker-ms.min.js │ │ │ ├── jquery.ui.datepicker-nb.min.js │ │ │ ├── jquery.ui.datepicker-nl-BE.min.js │ │ │ ├── jquery.ui.datepicker-nl.min.js │ │ │ ├── jquery.ui.datepicker-nn.min.js │ │ │ ├── jquery.ui.datepicker-no.min.js │ │ │ ├── jquery.ui.datepicker-pl.min.js │ │ │ ├── jquery.ui.datepicker-pt-BR.min.js │ │ │ ├── jquery.ui.datepicker-pt.min.js │ │ │ ├── jquery.ui.datepicker-rm.min.js │ │ │ ├── jquery.ui.datepicker-ro.min.js │ │ │ ├── jquery.ui.datepicker-ru.min.js │ │ │ ├── jquery.ui.datepicker-sk.min.js │ │ │ ├── jquery.ui.datepicker-sl.min.js │ │ │ ├── jquery.ui.datepicker-sq.min.js │ │ │ ├── jquery.ui.datepicker-sr-SR.min.js │ │ │ ├── jquery.ui.datepicker-sr.min.js │ │ │ ├── jquery.ui.datepicker-sv.min.js │ │ │ ├── jquery.ui.datepicker-ta.min.js │ │ │ ├── jquery.ui.datepicker-th.min.js │ │ │ ├── jquery.ui.datepicker-tj.min.js │ │ │ ├── jquery.ui.datepicker-tr.min.js │ │ │ ├── jquery.ui.datepicker-uk.min.js │ │ │ ├── jquery.ui.datepicker-vi.min.js │ │ │ ├── jquery.ui.datepicker-zh-CN.min.js │ │ │ ├── jquery.ui.datepicker-zh-HK.min.js │ │ │ └── jquery.ui.datepicker-zh-TW.min.js │ │ │ ├── jquery-ui.custom.min.js │ │ │ ├── jquery-ui.min.js │ │ │ ├── jquery.ui.accordion.min.js │ │ │ ├── jquery.ui.autocomplete.min.js │ │ │ ├── jquery.ui.button.min.js │ │ │ ├── jquery.ui.core.min.js │ │ │ ├── jquery.ui.datepicker.min.js │ │ │ ├── jquery.ui.dialog.min.js │ │ │ ├── jquery.ui.draggable.min.js │ │ │ ├── jquery.ui.droppable.min.js │ │ │ ├── jquery.ui.effect-blind.min.js │ │ │ ├── jquery.ui.effect-bounce.min.js │ │ │ ├── jquery.ui.effect-clip.min.js │ │ │ ├── jquery.ui.effect-drop.min.js │ │ │ ├── jquery.ui.effect-explode.min.js │ │ │ ├── jquery.ui.effect-fade.min.js │ │ │ ├── jquery.ui.effect-fold.min.js │ │ │ ├── jquery.ui.effect-highlight.min.js │ │ │ ├── jquery.ui.effect-pulsate.min.js │ │ │ ├── jquery.ui.effect-scale.min.js │ │ │ ├── jquery.ui.effect-shake.min.js │ │ │ ├── jquery.ui.effect-slide.min.js │ │ │ ├── jquery.ui.effect-transfer.min.js │ │ │ ├── jquery.ui.effect.min.js │ │ │ ├── jquery.ui.menu.min.js │ │ │ ├── jquery.ui.mouse.min.js │ │ │ ├── jquery.ui.position.min.js │ │ │ ├── jquery.ui.progressbar.min.js │ │ │ ├── jquery.ui.resizable.min.js │ │ │ ├── jquery.ui.selectable.min.js │ │ │ ├── jquery.ui.slider.min.js │ │ │ ├── jquery.ui.sortable.min.js │ │ │ ├── jquery.ui.spinner.min.js │ │ │ ├── jquery.ui.tabs.min.js │ │ │ ├── jquery.ui.tooltip.min.js │ │ │ └── jquery.ui.widget.min.js │ │ ├── jquery.easy-pie-chart │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── bower.json │ │ ├── changelog.md │ │ ├── dist │ │ │ ├── angular.easypiechart.js │ │ │ ├── angular.easypiechart.min.js │ │ │ ├── easypiechart.js │ │ │ ├── easypiechart.min.js │ │ │ ├── jquery.easypiechart.fill.js │ │ │ ├── jquery.easypiechart.js │ │ │ └── jquery.easypiechart.min.js │ │ ├── docs │ │ │ ├── README.tmpl.md │ │ │ ├── bagdes.md │ │ │ ├── browser-support.md │ │ │ ├── callbacks.md │ │ │ ├── credits.md │ │ │ ├── features.md │ │ │ ├── get-started.md │ │ │ ├── options.md │ │ │ ├── plugin-api.md │ │ │ └── test.md │ │ ├── karma.conf.coffee │ │ ├── package.json │ │ ├── src │ │ │ ├── angular.directive.js │ │ │ ├── easypiechart.js │ │ │ ├── jquery.plugin.js │ │ │ └── renderer │ │ │ │ └── canvas.js │ │ └── test │ │ │ ├── polyfills │ │ │ └── bind.js │ │ │ └── unit │ │ │ ├── angular.directive.js │ │ │ └── jquery.js │ │ ├── jquery.sparkline │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── Changelog.txt │ │ ├── Makefile │ │ ├── README.md │ │ ├── dist │ │ │ └── jquery.sparkline.retina.js │ │ ├── minheader.txt │ │ ├── sparkline.jquery.json │ │ ├── src │ │ │ ├── base.js │ │ │ ├── chart-bar.js │ │ │ ├── chart-box.js │ │ │ ├── chart-bullet.js │ │ │ ├── chart-discrete.js │ │ │ ├── chart-line.js │ │ │ ├── chart-pie.js │ │ │ ├── chart-tristate.js │ │ │ ├── defaults.js │ │ │ ├── footer.js │ │ │ ├── header.js │ │ │ ├── interact.js │ │ │ ├── rangemap.js │ │ │ ├── simpledraw.js │ │ │ ├── utils.js │ │ │ ├── vcanvas-base.js │ │ │ ├── vcanvas-canvas.js │ │ │ └── vcanvas-vml.js │ │ └── version.txt │ │ ├── jquery │ │ ├── .bower.json │ │ ├── MIT-LICENSE.txt │ │ ├── bower.json │ │ ├── dist │ │ │ ├── jquery.js │ │ │ ├── jquery.min.js │ │ │ └── jquery.min.map │ │ └── src │ │ │ ├── ajax.js │ │ │ ├── ajax │ │ │ ├── jsonp.js │ │ │ ├── load.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ ├── var │ │ │ │ ├── nonce.js │ │ │ │ └── rquery.js │ │ │ └── xhr.js │ │ │ ├── attributes.js │ │ │ ├── attributes │ │ │ ├── attr.js │ │ │ ├── classes.js │ │ │ ├── prop.js │ │ │ ├── support.js │ │ │ └── val.js │ │ │ ├── callbacks.js │ │ │ ├── core.js │ │ │ ├── core │ │ │ ├── access.js │ │ │ ├── init.js │ │ │ ├── parseHTML.js │ │ │ ├── ready.js │ │ │ └── var │ │ │ │ └── rsingleTag.js │ │ │ ├── css.js │ │ │ ├── css │ │ │ ├── addGetHookIf.js │ │ │ ├── curCSS.js │ │ │ ├── defaultDisplay.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── support.js │ │ │ ├── swap.js │ │ │ └── var │ │ │ │ ├── cssExpand.js │ │ │ │ ├── getStyles.js │ │ │ │ ├── isHidden.js │ │ │ │ ├── rmargin.js │ │ │ │ └── rnumnonpx.js │ │ │ ├── data.js │ │ │ ├── data │ │ │ ├── Data.js │ │ │ ├── accepts.js │ │ │ └── var │ │ │ │ ├── data_priv.js │ │ │ │ └── data_user.js │ │ │ ├── deferred.js │ │ │ ├── deprecated.js │ │ │ ├── dimensions.js │ │ │ ├── effects.js │ │ │ ├── effects │ │ │ ├── Tween.js │ │ │ └── animatedSelector.js │ │ │ ├── event.js │ │ │ ├── event │ │ │ ├── ajax.js │ │ │ ├── alias.js │ │ │ └── support.js │ │ │ ├── exports │ │ │ ├── amd.js │ │ │ └── global.js │ │ │ ├── intro.js │ │ │ ├── jquery.js │ │ │ ├── manipulation.js │ │ │ ├── manipulation │ │ │ ├── _evalUrl.js │ │ │ ├── support.js │ │ │ └── var │ │ │ │ └── rcheckableType.js │ │ │ ├── offset.js │ │ │ ├── outro.js │ │ │ ├── queue.js │ │ │ ├── queue │ │ │ └── delay.js │ │ │ ├── selector-native.js │ │ │ ├── selector-sizzle.js │ │ │ ├── selector.js │ │ │ ├── serialize.js │ │ │ ├── sizzle │ │ │ └── dist │ │ │ │ ├── sizzle.js │ │ │ │ ├── sizzle.min.js │ │ │ │ └── sizzle.min.map │ │ │ ├── traversing.js │ │ │ ├── traversing │ │ │ ├── findFilter.js │ │ │ └── var │ │ │ │ └── rneedsContext.js │ │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── hasOwn.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── push.js │ │ │ ├── rnotwhite.js │ │ │ ├── slice.js │ │ │ ├── strundefined.js │ │ │ ├── support.js │ │ │ └── toString.js │ │ │ └── wrap.js │ │ ├── jquery_appear │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── AUTHORS.txt │ │ ├── CHANGELOG │ │ ├── LICENSE │ │ ├── README.md │ │ ├── appear.jquery.json │ │ └── jquery.appear.js │ │ ├── moment │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmarks │ │ │ └── clone.js │ │ ├── bower.json │ │ ├── locale │ │ │ ├── af.js │ │ │ ├── ar-ma.js │ │ │ ├── ar-sa.js │ │ │ ├── ar.js │ │ │ ├── az.js │ │ │ ├── be.js │ │ │ ├── bg.js │ │ │ ├── bn.js │ │ │ ├── bo.js │ │ │ ├── br.js │ │ │ ├── bs.js │ │ │ ├── ca.js │ │ │ ├── cs.js │ │ │ ├── cv.js │ │ │ ├── cy.js │ │ │ ├── da.js │ │ │ ├── de-at.js │ │ │ ├── de.js │ │ │ ├── el.js │ │ │ ├── en-au.js │ │ │ ├── en-ca.js │ │ │ ├── en-gb.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── eu.js │ │ │ ├── fa.js │ │ │ ├── fi.js │ │ │ ├── fo.js │ │ │ ├── fr-ca.js │ │ │ ├── fr.js │ │ │ ├── gl.js │ │ │ ├── he.js │ │ │ ├── hi.js │ │ │ ├── hr.js │ │ │ ├── hu.js │ │ │ ├── hy-am.js │ │ │ ├── id.js │ │ │ ├── is.js │ │ │ ├── it.js │ │ │ ├── ja.js │ │ │ ├── ka.js │ │ │ ├── km.js │ │ │ ├── ko.js │ │ │ ├── lb.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── mk.js │ │ │ ├── ml.js │ │ │ ├── mr.js │ │ │ ├── ms-my.js │ │ │ ├── my.js │ │ │ ├── nb.js │ │ │ ├── ne.js │ │ │ ├── nl.js │ │ │ ├── nn.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ro.js │ │ │ ├── ru.js │ │ │ ├── sk.js │ │ │ ├── sl.js │ │ │ ├── sq.js │ │ │ ├── sr-cyrl.js │ │ │ ├── sr.js │ │ │ ├── sv.js │ │ │ ├── ta.js │ │ │ ├── th.js │ │ │ ├── tl-ph.js │ │ │ ├── tr.js │ │ │ ├── tzm-latn.js │ │ │ ├── tzm.js │ │ │ ├── uk.js │ │ │ ├── uz.js │ │ │ ├── vi.js │ │ │ ├── zh-cn.js │ │ │ └── zh-tw.js │ │ ├── min │ │ │ ├── locales.js │ │ │ ├── locales.min.js │ │ │ ├── moment-with-locales.js │ │ │ ├── moment-with-locales.min.js │ │ │ └── moment.min.js │ │ ├── moment.js │ │ └── scripts │ │ │ └── npm_prepublish.sh │ │ ├── nestable │ │ ├── .bower.json │ │ ├── README.md │ │ ├── index.html │ │ ├── jquery.nestable.css │ │ └── jquery.nestable.js │ │ ├── ng-grid │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── ng-grid.debug.js │ │ │ ├── ng-grid.js │ │ │ └── ng-grid.min.js │ │ ├── ng-grid-2.0.14.debug.js │ │ ├── ng-grid-2.0.14.min.js │ │ ├── ng-grid.bootstrap.css │ │ ├── ng-grid.css │ │ ├── ng-grid.min.css │ │ ├── package.json │ │ └── plugins │ │ │ ├── README.md │ │ │ ├── ng-grid-csv-export.js │ │ │ ├── ng-grid-flexible-height.js │ │ │ ├── ng-grid-layout.js │ │ │ ├── ng-grid-pdf-export.js │ │ │ ├── ng-grid-reorderable.js │ │ │ ├── ng-grid-wysiwyg-export.js │ │ │ └── playground.html │ │ ├── ngImgCrop │ │ ├── .bower.json │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .jshintrc │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── compile │ │ │ ├── minified │ │ │ │ ├── ng-img-crop.css │ │ │ │ └── ng-img-crop.js │ │ │ └── unminified │ │ │ │ ├── ng-img-crop.css │ │ │ │ └── ng-img-crop.js │ │ ├── gulpfile.js │ │ ├── package.json │ │ ├── screenshots │ │ │ ├── circle_1.jpg │ │ │ └── square_1.jpg │ │ └── source │ │ │ ├── js │ │ │ ├── classes │ │ │ │ ├── crop-area-circle.js │ │ │ │ ├── crop-area-square.js │ │ │ │ ├── crop-area.js │ │ │ │ ├── crop-canvas.js │ │ │ │ ├── crop-host.js │ │ │ │ └── crop-pubsub.js │ │ │ ├── init.js │ │ │ └── ng-img-crop.js │ │ │ └── scss │ │ │ └── ng-img-crop.scss │ │ ├── ngstorage │ │ ├── .bower.json │ │ ├── .bowerrc │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── ngStorage.js │ │ ├── ngStorage.min.js │ │ ├── package.json │ │ └── test │ │ │ └── spec.js │ │ ├── oclazyload │ │ ├── .bower.json │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── dist │ │ │ ├── ocLazyLoad.js │ │ │ └── ocLazyLoad.min.js │ │ └── examples │ │ │ ├── complexExample │ │ │ ├── README.md │ │ │ ├── bower.json │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── AppCtrl.js │ │ │ │ ├── app.js │ │ │ │ └── gridModule.js │ │ │ └── partials │ │ │ │ ├── main.html │ │ │ │ └── modal.html │ │ │ ├── requireJSExample │ │ │ ├── css │ │ │ │ └── ng-grid.css │ │ │ ├── index.html │ │ │ ├── js │ │ │ │ ├── angular.min.js │ │ │ │ ├── jquery.js │ │ │ │ ├── lazymodule.js │ │ │ │ ├── main.js │ │ │ │ ├── ng-grid-2.0.11.debug.js │ │ │ │ ├── require.js │ │ │ │ └── testmodule.js │ │ │ └── partials │ │ │ │ └── grid.html │ │ │ └── simpleExample │ │ │ ├── index.html │ │ │ └── js │ │ │ └── testApp.js │ │ ├── plugins │ │ ├── .bower.json │ │ ├── README.md │ │ ├── api │ │ │ ├── average().js │ │ │ ├── column().title().js │ │ │ ├── columns().order().js │ │ │ ├── fnAddDataAndDisplay.js │ │ │ ├── fnAddTr.js │ │ │ ├── fnColumnIndexToVisible.js │ │ │ ├── fnDataUpdate.js │ │ │ ├── fnDisplayRow.js │ │ │ ├── fnDisplayStart.js │ │ │ ├── fnFakeRowspan.js │ │ │ ├── fnFilterAll.js │ │ │ ├── fnFilterClear.js │ │ │ ├── fnFilterOnReturn.js │ │ │ ├── fnFindCellRowIndexes.js │ │ │ ├── fnFindCellRowNodes.js │ │ │ ├── fnGetAdjacentTr.js │ │ │ ├── fnGetColumnData.js │ │ │ ├── fnGetColumnIndex.js │ │ │ ├── fnGetHiddenNodes.js │ │ │ ├── fnGetTd.js │ │ │ ├── fnGetTds.js │ │ │ ├── fnLengthChange.js │ │ │ ├── fnMultiFilter.js │ │ │ ├── fnPagingInfo.js │ │ │ ├── fnProcessingIndicator.js │ │ │ ├── fnReloadAjax.js │ │ │ ├── fnSetFilteringDelay.js │ │ │ ├── fnSortNeutral.js │ │ │ ├── fnStandingRedraw.js │ │ │ ├── fnVisibleToColumnIndex.js │ │ │ ├── index.html │ │ │ ├── page.jumpToData().js │ │ │ └── sum().js │ │ ├── features │ │ │ ├── alphabetSearch │ │ │ │ ├── dataTables.alphabetSearch.css │ │ │ │ ├── dataTables.alphabetSearch.js │ │ │ │ └── dataTables.alphabetSearch.min.js │ │ │ ├── lengthLinks │ │ │ │ ├── dataTables.lengthLinks.css │ │ │ │ ├── dataTables.lengthLinks.js │ │ │ │ └── dataTables.lengthLinks.min.js │ │ │ └── searchHighlight │ │ │ │ ├── dataTables.searchHighlight.css │ │ │ │ ├── dataTables.searchHighlight.js │ │ │ │ └── dataTables.searchHighlight.min.js │ │ ├── filtering │ │ │ ├── index.html │ │ │ ├── row-based │ │ │ │ ├── TableTools.ShowSelectedOnly.js │ │ │ │ ├── range_dates.js │ │ │ │ └── range_numbers.js │ │ │ └── type-based │ │ │ │ ├── accent-neutralise.js │ │ │ │ ├── html.js │ │ │ │ └── phoneNumber.js │ │ ├── i18n │ │ │ ├── Afrikaans.lang │ │ │ ├── Albanian.lang │ │ │ ├── Arabic.lang │ │ │ ├── Azerbaijan.lang │ │ │ ├── Bangla.lang │ │ │ ├── Belarusian.lang │ │ │ ├── Bulgarian.lang │ │ │ ├── Catalan.lang │ │ │ ├── Chinese-traditional.lang │ │ │ ├── Chinese.lang │ │ │ ├── Croatian.lang │ │ │ ├── Czech.lang │ │ │ ├── Danish.lang │ │ │ ├── Dutch.lang │ │ │ ├── English.lang │ │ │ ├── Estonian.lang │ │ │ ├── Filipino.lang │ │ │ ├── Finnish.lang │ │ │ ├── French.lang │ │ │ ├── Galician.lang │ │ │ ├── Georgian.lang │ │ │ ├── German.lang │ │ │ ├── Greek.lang │ │ │ ├── Gujarati.lang │ │ │ ├── Hebrew.lang │ │ │ ├── Hindi.lang │ │ │ ├── Hungarian.lang │ │ │ ├── Icelandic.lang │ │ │ ├── Indonesian-Alternative.lang │ │ │ ├── Indonesian.lang │ │ │ ├── Irish.lang │ │ │ ├── Italian.lang │ │ │ ├── Japanese.lang │ │ │ ├── Korean.lang │ │ │ ├── Latvian.lang │ │ │ ├── Lithuanian.lang │ │ │ ├── Macedonian.lang │ │ │ ├── Malay.lang │ │ │ ├── Norwegian.lang │ │ │ ├── Persian.lang │ │ │ ├── Polish.lang │ │ │ ├── Portuguese-Brasil.lang │ │ │ ├── Portuguese.lang │ │ │ ├── Romanian.lang │ │ │ ├── Russian.lang │ │ │ ├── Serbian.lang │ │ │ ├── Slovak.lang │ │ │ ├── Slovenian.lang │ │ │ ├── Spanish.lang │ │ │ ├── Swahili.lang │ │ │ ├── Swedish.lang │ │ │ ├── Tamil.lang │ │ │ ├── Thai.lang │ │ │ ├── Turkish.lang │ │ │ ├── Ukranian.lang │ │ │ ├── Urdu.lang │ │ │ ├── Uzbek.lang │ │ │ ├── Vietnamese.lang │ │ │ └── index.html │ │ ├── integration │ │ │ ├── bootstrap │ │ │ │ ├── 1 │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ └── dataTables.bootstrap.js │ │ │ │ ├── 2 │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ └── index.html │ │ │ │ ├── 3 │ │ │ │ │ ├── dataTables.bootstrap.css │ │ │ │ │ ├── dataTables.bootstrap.js │ │ │ │ │ ├── dataTables.bootstrap.min.js │ │ │ │ │ └── index.html │ │ │ │ └── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ ├── font-awesome │ │ │ │ ├── bootstrap.html │ │ │ │ ├── dataTables.fontAwesome.css │ │ │ │ ├── datatables.html │ │ │ │ └── foundation.html │ │ │ ├── foundation │ │ │ │ ├── dataTables.foundation.css │ │ │ │ ├── dataTables.foundation.js │ │ │ │ ├── dataTables.foundation.min.js │ │ │ │ ├── images │ │ │ │ │ ├── sort_asc.png │ │ │ │ │ ├── sort_asc_disabled.png │ │ │ │ │ ├── sort_both.png │ │ │ │ │ ├── sort_desc.png │ │ │ │ │ └── sort_desc_disabled.png │ │ │ │ └── index.html │ │ │ └── jqueryui │ │ │ │ ├── dataTables.jqueryui.css │ │ │ │ ├── dataTables.jqueryui.js │ │ │ │ ├── dataTables.jqueryui.min.js │ │ │ │ ├── dataTables.jqueryui.scss │ │ │ │ └── index.html │ │ ├── make.sh │ │ ├── pagination │ │ │ ├── ellipses.js │ │ │ ├── extjs.js │ │ │ ├── four_button.js │ │ │ ├── index.html │ │ │ ├── input.js │ │ │ ├── jPaginator │ │ │ │ └── dataTables.jPaginator.js │ │ │ ├── scrolling.js │ │ │ └── select.js │ │ ├── sorting │ │ │ ├── alt-string.js │ │ │ ├── anti-the.js │ │ │ ├── chinese-string.js │ │ │ ├── currency.js │ │ │ ├── custom-data-source │ │ │ │ ├── dom-checkbox.js │ │ │ │ ├── dom-select.js │ │ │ │ └── dom-text.js │ │ │ ├── date-dd-MMM-yyyy.js │ │ │ ├── date-de.js │ │ │ ├── date-eu.js │ │ │ ├── date-euro.js │ │ │ ├── date-uk.js │ │ │ ├── datetime-moment.js │ │ │ ├── datetime-us.js │ │ │ ├── enum.js │ │ │ ├── file-size.js │ │ │ ├── formatted-numbers.js │ │ │ ├── index.html │ │ │ ├── ip-address.js │ │ │ ├── monthYear.js │ │ │ ├── natural.js │ │ │ ├── num-html.js │ │ │ ├── numeric-comma.js │ │ │ ├── percent.js │ │ │ ├── persian.js │ │ │ ├── scientific.js │ │ │ ├── signed-num.js │ │ │ ├── stringMonthYear.js │ │ │ ├── time.js │ │ │ ├── title-numeric.js │ │ │ ├── title-string.js │ │ │ └── turkish-string.js │ │ └── type-detection │ │ │ ├── currency.js │ │ │ ├── date-uk.js │ │ │ ├── file-size.js │ │ │ ├── formatted-num.js │ │ │ ├── index.html │ │ │ ├── ip-address.js │ │ │ ├── num-html.js │ │ │ └── numeric-comma.js │ │ ├── requirejs │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ └── require.js │ │ ├── screenfull │ │ ├── .bower.json │ │ ├── Gruntfile.js │ │ ├── bower.json │ │ ├── dist │ │ │ ├── screenfull.js │ │ │ └── screenfull.min.js │ │ ├── index.html │ │ ├── license │ │ └── readme.md │ │ ├── simple-line-icons │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── css │ │ │ └── simple-line-icons.css │ │ ├── fonts │ │ │ ├── Simple-Line-Icons.eot │ │ │ ├── Simple-Line-Icons.svg │ │ │ ├── Simple-Line-Icons.ttf │ │ │ └── Simple-Line-Icons.woff │ │ ├── less │ │ │ └── simple-line-icons.less │ │ └── scss │ │ │ └── simple-line-icons.scss │ │ ├── slimscroll │ │ ├── .bower.json │ │ ├── README.md │ │ ├── bower.json │ │ ├── examples │ │ │ ├── allow-page-scroll.html │ │ │ ├── chaining.html │ │ │ ├── disable-fade-out.html │ │ │ ├── dynamic-content.html │ │ │ ├── height-width.html │ │ │ ├── index.html │ │ │ ├── libs │ │ │ │ └── prettify │ │ │ │ │ ├── prettify.css │ │ │ │ │ └── prettify.js │ │ │ ├── mouse-wheel.html │ │ │ ├── multiple-elements.html │ │ │ ├── navigation.html │ │ │ ├── nested.html │ │ │ ├── programmatic-scrolling.html │ │ │ ├── rail.html │ │ │ ├── scroll-events.html │ │ │ ├── scrollbar.html │ │ │ ├── start-position.html │ │ │ └── style.css │ │ ├── jquery.slimscroll.js │ │ ├── jquery.slimscroll.min.js │ │ └── slimScroll.jquery.json │ │ ├── textAngular │ │ ├── .bower.json │ │ ├── CONTRIBUTING.md │ │ ├── README.md │ │ ├── bower.json │ │ ├── changelog.md │ │ ├── dist │ │ │ ├── textAngular-sanitize.min.js │ │ │ └── textAngular.min.js │ │ ├── karma-jqlite.conf.js │ │ ├── karma-jquery.conf.js │ │ └── src │ │ │ ├── textAngular-sanitize.js │ │ │ ├── textAngular.js │ │ │ └── textAngularSetup.js │ │ ├── venturocket-angular-slider │ │ ├── .bower.json │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── build │ │ │ ├── angular-slider.css │ │ │ ├── angular-slider.js │ │ │ └── angular-slider.min.js │ │ └── package.json │ │ ├── videogular-buffering │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── buffering.js │ │ ├── buffering.min.js │ │ └── package.json │ │ ├── videogular-controls │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── controls.js │ │ ├── controls.min.js │ │ └── package.json │ │ ├── videogular-ima-ads │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── ima-ads.js │ │ ├── ima-ads.min.js │ │ └── package.json │ │ ├── videogular-overlay-play │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── overlay-play.js │ │ ├── overlay-play.min.js │ │ └── package.json │ │ ├── videogular-poster │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── package.json │ │ ├── poster.js │ │ └── poster.min.js │ │ ├── videogular │ │ ├── .bower.json │ │ ├── .gitignore │ │ ├── Gruntfile.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bower.json │ │ ├── package.json │ │ ├── videogular.js │ │ └── videogular.min.js │ │ └── waypoints │ │ ├── .bower.json │ │ ├── README.markdown │ │ ├── bower.json │ │ ├── licenses.txt │ │ ├── package.json │ │ ├── shortcuts │ │ ├── infinite-scroll │ │ │ ├── waypoints-infinite.js │ │ │ └── waypoints-infinite.min.js │ │ └── sticky-elements │ │ │ ├── waypoints-sticky.js │ │ │ └── waypoints-sticky.min.js │ │ ├── waypoints.js │ │ └── waypoints.min.js └── web.config ├── readme.md ├── resources ├── assets │ ├── angulr │ │ ├── config │ │ │ └── webpack.mix.js │ │ ├── css │ │ │ ├── font.css │ │ │ └── less │ │ │ │ ├── app.arrow.less │ │ │ │ ├── app.butterbar.less │ │ │ │ ├── app.buttons.less │ │ │ │ ├── app.colors.less │ │ │ │ ├── app.components.less │ │ │ │ ├── app.item.less │ │ │ │ ├── app.layout.boxed.less │ │ │ │ ├── app.layout.less │ │ │ │ ├── app.less │ │ │ │ ├── app.mixins.less │ │ │ │ ├── app.nav.dock.less │ │ │ │ ├── app.nav.less │ │ │ │ ├── app.nav.offscreen.less │ │ │ │ ├── app.ng.less │ │ │ │ ├── app.plugin.less │ │ │ │ ├── app.reset.less │ │ │ │ ├── app.rtl.less │ │ │ │ ├── app.utilities.less │ │ │ │ ├── app.variables.less │ │ │ │ ├── app.widgets.less │ │ │ │ ├── md.base.less │ │ │ │ ├── md.btn.less │ │ │ │ ├── md.card.less │ │ │ │ ├── md.check.less │ │ │ │ ├── md.color.less │ │ │ │ ├── md.icon.less │ │ │ │ ├── md.input.less │ │ │ │ ├── md.layout.less │ │ │ │ ├── md.less │ │ │ │ ├── md.list.less │ │ │ │ ├── md.switch.less │ │ │ │ ├── md.variables.less │ │ │ │ └── md.whiteframe.less │ │ └── js │ │ │ ├── app.js │ │ │ ├── config.js │ │ │ ├── config.lazyload.js │ │ │ ├── services │ │ │ └── ui-load.js │ │ │ └── support │ │ │ ├── app.min.js │ │ │ ├── app.src.js │ │ │ ├── ui-client.js │ │ │ ├── ui-jp.config.js │ │ │ ├── ui-jp.js │ │ │ ├── ui-load.js │ │ │ ├── ui-nav.js │ │ │ └── ui-toggle.js │ ├── js │ │ ├── app.js │ │ ├── bootstrap.js │ │ ├── components │ │ │ ├── ExampleComponent.vue │ │ │ ├── app │ │ │ │ └── users │ │ │ │ │ ├── UserList.vue │ │ │ │ │ └── UserListGroupItem.vue │ │ │ ├── console │ │ │ │ └── OAuth.vue │ │ │ ├── mobile │ │ │ │ ├── home │ │ │ │ │ └── Home.vue │ │ │ │ ├── main │ │ │ │ │ ├── App.vue │ │ │ │ │ └── section │ │ │ │ │ │ ├── AppHeader.vue │ │ │ │ │ │ ├── AppTabBar.vue │ │ │ │ │ │ └── tabbar │ │ │ │ │ │ └── TabBarItem.vue │ │ │ │ └── user │ │ │ │ │ ├── UserDetail.vue │ │ │ │ │ └── detail │ │ │ │ │ ├── Posts.vue │ │ │ │ │ └── Profile.vue │ │ │ └── passport │ │ │ │ ├── AuthorizedClients.vue │ │ │ │ ├── Clients.vue │ │ │ │ └── PersonalAccessTokens.vue │ │ ├── console.js │ │ ├── directives │ │ │ └── focus.js │ │ ├── essentials │ │ │ └── autosize-textarea.vue │ │ ├── filters │ │ │ ├── helpers.js │ │ │ └── nl2br.js │ │ ├── mixins │ │ │ ├── bus.js │ │ │ ├── jquery.js │ │ │ ├── mobile_app.js │ │ │ ├── nl2br.js │ │ │ ├── store.js │ │ │ ├── tools.js │ │ │ └── user.js │ │ ├── mobile.js │ │ └── mobile_router.js │ ├── less │ │ ├── app.less │ │ ├── app │ │ │ └── desktop.less │ │ ├── console.less │ │ └── mobile.less │ └── sass │ │ ├── _variables.scss │ │ └── app.scss ├── js │ ├── app.js │ ├── bootstrap.js │ └── components │ │ ├── ExampleComponent.vue │ │ └── passport │ │ ├── AuthorizedClients.vue │ │ ├── Clients.vue │ │ └── PersonalAccessTokens.vue ├── lang │ ├── en │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php │ └── zh │ │ ├── app.php │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php ├── sass │ ├── _variables.scss │ └── app.scss └── views │ ├── angulr │ ├── auth │ │ ├── auth_base.blade.php │ │ ├── login.blade.php │ │ ├── passwords │ │ │ ├── email.blade.php │ │ │ └── reset.blade.php │ │ └── register.blade.php │ └── layout │ │ ├── frame.blade.php │ │ ├── master.blade.php │ │ └── parts │ │ ├── aside.blade.php │ │ ├── aside │ │ ├── footer.blade.php │ │ ├── nav.blade.php │ │ └── user.blade.php │ │ ├── content.blade.php │ │ ├── footer.blade.php │ │ ├── footer │ │ └── copyright.blade.php │ │ ├── header.blade.php │ │ └── navbar │ │ ├── collapse.blade.php │ │ ├── header.blade.php │ │ ├── items │ │ ├── mega.blade.php │ │ ├── new.blade.php │ │ ├── notifications.blade.php │ │ ├── profile.blade.php │ │ └── user.blade.php │ │ ├── navbar_links.blade.php │ │ └── navbar_right.blade.php │ ├── app │ ├── example │ │ ├── blank.blade.php │ │ ├── desktop.blade.php │ │ └── index.blade.php │ ├── layout │ │ ├── desktop_frame.blade.php │ │ ├── frame.blade.php │ │ ├── frame_only.blade.php │ │ ├── frame_without_aside.blade.php │ │ ├── master.blade.php │ │ └── parts │ │ │ ├── aside.blade.php │ │ │ ├── aside │ │ │ ├── footer.blade.php │ │ │ ├── nav.blade.php │ │ │ └── user.blade.php │ │ │ ├── content.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── footer │ │ │ └── copyright.blade.php │ │ │ ├── footer_desktop.blade.php │ │ │ ├── header.blade.php │ │ │ ├── header_desktop.blade.php │ │ │ ├── header_without_aside.blade.php │ │ │ └── navbar │ │ │ ├── collapse.blade.php │ │ │ ├── collapse_without_aside.blade.php │ │ │ ├── header.blade.php │ │ │ ├── header_without_aside.blade.php │ │ │ ├── items │ │ │ ├── mega.blade.php │ │ │ ├── new.blade.php │ │ │ ├── notifications.blade.php │ │ │ ├── profile.blade.php │ │ │ └── user.blade.php │ │ │ ├── navbar_links.blade.php │ │ │ └── navbar_right.blade.php │ └── users │ │ └── user_list.blade.php │ ├── auth │ ├── login.blade.php │ ├── passwords │ │ ├── email.blade.php │ │ └── reset.blade.php │ └── register.blade.php │ ├── console │ ├── index.blade.php │ ├── layout │ │ ├── frame.blade.php │ │ ├── frame_without_aside.blade.php │ │ ├── master.blade.php │ │ └── parts │ │ │ ├── aside.blade.php │ │ │ ├── aside │ │ │ ├── footer.blade.php │ │ │ ├── nav.blade.php │ │ │ └── user.blade.php │ │ │ ├── content.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── footer │ │ │ └── copyright.blade.php │ │ │ ├── header.blade.php │ │ │ └── navbar │ │ │ ├── collapse.blade.php │ │ │ ├── header.blade.php │ │ │ ├── header_without_aside.blade.php │ │ │ ├── items │ │ │ ├── mega.blade.php │ │ │ ├── new.blade.php │ │ │ ├── notifications.blade.php │ │ │ ├── profile.blade.php │ │ │ └── user.blade.php │ │ │ ├── navbar_links.blade.php │ │ │ └── navbar_right.blade.php │ ├── oauth.blade.php │ └── users │ │ └── user_list.blade.php │ ├── errors │ ├── 401.blade.php │ ├── 403.blade.php │ ├── 404.blade.php │ ├── 419.blade.php │ ├── 429.blade.php │ ├── 500.blade.php │ ├── 503.blade.php │ ├── illustrated-layout.blade.php │ ├── layout.blade.php │ └── minimal.blade.php │ ├── home.blade.php │ ├── layouts │ └── app.blade.php │ ├── mobile │ ├── layout │ │ ├── frame.blade.php │ │ ├── frame_mobile.blade.php │ │ ├── frame_mobile_without_header.blade.php │ │ ├── frame_mobile_without_tabbar.blade.php │ │ ├── frame_without_aside.blade.php │ │ ├── master.blade.php │ │ ├── master_mobile.blade.php │ │ └── parts │ │ │ ├── aside.blade.php │ │ │ ├── aside │ │ │ ├── footer.blade.php │ │ │ ├── nav.blade.php │ │ │ └── user.blade.php │ │ │ ├── content.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── footer │ │ │ └── copyright.blade.php │ │ │ ├── header.blade.php │ │ │ ├── mobile_footer.blade.php │ │ │ ├── mobile_header.blade.php │ │ │ └── navbar │ │ │ ├── collapse.blade.php │ │ │ ├── header.blade.php │ │ │ ├── header_without_aside.blade.php │ │ │ ├── items │ │ │ ├── mega.blade.php │ │ │ ├── new.blade.php │ │ │ ├── notifications.blade.php │ │ │ ├── profile.blade.php │ │ │ └── user.blade.php │ │ │ ├── mobile_nav_header.blade.php │ │ │ ├── navbar_links.blade.php │ │ │ └── navbar_right.blade.php │ ├── mobile_app.blade.php │ ├── mobile_main.blade.php │ └── users │ │ ├── user_detail.blade.php │ │ └── user_list.blade.php │ ├── vendor │ ├── .gitkeep │ ├── laravel-log-viewer │ │ └── log.blade.php │ ├── mail │ │ ├── html │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ ├── table.blade.php │ │ │ └── themes │ │ │ │ └── default.css │ │ └── text │ │ │ ├── button.blade.php │ │ │ ├── footer.blade.php │ │ │ ├── header.blade.php │ │ │ ├── layout.blade.php │ │ │ ├── message.blade.php │ │ │ ├── panel.blade.php │ │ │ ├── promotion.blade.php │ │ │ ├── promotion │ │ │ └── button.blade.php │ │ │ ├── subcopy.blade.php │ │ │ └── table.blade.php │ ├── notifications │ │ └── email.blade.php │ ├── pagination │ │ ├── bootstrap-4.blade.php │ │ ├── default.blade.php │ │ ├── semantic-ui.blade.php │ │ ├── simple-bootstrap-4.blade.php │ │ └── simple-default.blade.php │ └── passport │ │ └── authorize.blade.php │ └── welcome.blade.php ├── routes ├── api.php ├── channels.php ├── console.php └── web.php ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── clockwork │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ ├── .gitignore │ │ └── data │ │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ ├── testing │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore ├── tests ├── Api │ ├── BaseApiTestCase.php │ ├── BasicTest.php │ ├── OAuthTest.php │ └── UserTest.php ├── CreatesApplication.php ├── Feature │ └── ExampleTest.php ├── TestCase.php └── Unit │ ├── ExampleTest.php │ └── ModelTest.php ├── webpack.mix.js └── yarn.lock /.bowerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/.bowerrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/.env.example -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/.gitignore -------------------------------------------------------------------------------- /app/Api/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Api/Controllers/BaseController.php -------------------------------------------------------------------------------- /app/Api/Controllers/UsersController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Api/Controllers/UsersController.php -------------------------------------------------------------------------------- /app/Api/Middleware/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Console/Kernel.php -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Events/Event.php -------------------------------------------------------------------------------- /app/Events/User/UserLoggedInEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Events/User/UserLoggedInEvent.php -------------------------------------------------------------------------------- /app/Events/User/UserRegisteredEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Events/User/UserRegisteredEvent.php -------------------------------------------------------------------------------- /app/Exceptions/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Exceptions/Handler.php -------------------------------------------------------------------------------- /app/Helpers/Helpers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Helpers/Helpers.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ForgotPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/Auth/ForgotPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/LoginController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/Auth/LoginController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/RegisterController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/Auth/RegisterController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/ResetPasswordController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/Auth/ResetPasswordController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Auth/VerificationController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/Auth/VerificationController.php -------------------------------------------------------------------------------- /app/Http/Controllers/BaseController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/BaseController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Console/ConsoleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/Console/ConsoleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Console/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/Console/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ExampleController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/ExampleController.php -------------------------------------------------------------------------------- /app/Http/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Http/Controllers/ImageController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/ImageController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Mobile/MobileController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/Mobile/MobileController.php -------------------------------------------------------------------------------- /app/Http/Controllers/Mobile/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/Mobile/UserController.php -------------------------------------------------------------------------------- /app/Http/Controllers/UserController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Controllers/UserController.php -------------------------------------------------------------------------------- /app/Http/Kernel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Kernel.php -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Middleware/Authenticate.php -------------------------------------------------------------------------------- /app/Http/Middleware/CheckForMaintenanceMode.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Middleware/CheckForMaintenanceMode.php -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Middleware/EncryptCookies.php -------------------------------------------------------------------------------- /app/Http/Middleware/RedirectIfAuthenticated.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Middleware/RedirectIfAuthenticated.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrimStrings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Middleware/TrimStrings.php -------------------------------------------------------------------------------- /app/Http/Middleware/TrustProxies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Middleware/TrustProxies.php -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Middleware/VerifyCsrfToken.php -------------------------------------------------------------------------------- /app/Http/Requests/UserCreateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Requests/UserCreateRequest.php -------------------------------------------------------------------------------- /app/Http/Requests/UserUpdateRequest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Http/Requests/UserUpdateRequest.php -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Jobs/Job.php -------------------------------------------------------------------------------- /app/Listeners/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Listeners/User/UserEventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Listeners/User/UserEventListener.php -------------------------------------------------------------------------------- /app/Models/BaseModel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Models/BaseModel.php -------------------------------------------------------------------------------- /app/Models/Common/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Models/Foundation/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Models/Foundation/User.php -------------------------------------------------------------------------------- /app/Models/Image/SomelineImage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Models/Image/SomelineImage.php -------------------------------------------------------------------------------- /app/Models/Traits/RelationUserTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Models/Traits/RelationUserTrait.php -------------------------------------------------------------------------------- /app/Models/User/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/Observers/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Policies/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Policies/BasePolicy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Policies/BasePolicy.php -------------------------------------------------------------------------------- /app/Presenters/BasePresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Presenters/BasePresenter.php -------------------------------------------------------------------------------- /app/Presenters/UserPresenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Presenters/UserPresenter.php -------------------------------------------------------------------------------- /app/Providers/ApiServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Providers/ApiServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Providers/AppServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/AuthServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Providers/AuthServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/BroadcastServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Providers/BroadcastServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Providers/EventServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/PolymorphicServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Providers/PolymorphicServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RepositoryServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Providers/RepositoryServiceProvider.php -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Providers/RouteServiceProvider.php -------------------------------------------------------------------------------- /app/Repositories/Criteria/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /app/Repositories/Eloquent/BaseRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Repositories/Eloquent/BaseRepository.php -------------------------------------------------------------------------------- /app/Repositories/Eloquent/UserRepositoryEloquent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Repositories/Eloquent/UserRepositoryEloquent.php -------------------------------------------------------------------------------- /app/Repositories/Interfaces/BaseRepositoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Repositories/Interfaces/BaseRepositoryInterface.php -------------------------------------------------------------------------------- /app/Repositories/Interfaces/UserRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Repositories/Interfaces/UserRepository.php -------------------------------------------------------------------------------- /app/Transformers/BaseTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Transformers/BaseTransformer.php -------------------------------------------------------------------------------- /app/Transformers/UserTransformer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Transformers/UserTransformer.php -------------------------------------------------------------------------------- /app/Validators/UserValidator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/app/Validators/UserValidator.php -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/artisan -------------------------------------------------------------------------------- /bootstrap/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/bootstrap/app.php -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/bootstrap/autoload.php -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/bower.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/composer.lock -------------------------------------------------------------------------------- /config/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/api.php -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/app.php -------------------------------------------------------------------------------- /config/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/auth.php -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/broadcasting.php -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/cache.php -------------------------------------------------------------------------------- /config/clockwork.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/clockwork.php -------------------------------------------------------------------------------- /config/compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/compile.php -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/database.php -------------------------------------------------------------------------------- /config/debug-server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/debug-server.php -------------------------------------------------------------------------------- /config/filesystems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/filesystems.php -------------------------------------------------------------------------------- /config/geoip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/geoip.php -------------------------------------------------------------------------------- /config/hashing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/hashing.php -------------------------------------------------------------------------------- /config/ide-helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/ide-helper.php -------------------------------------------------------------------------------- /config/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/image.php -------------------------------------------------------------------------------- /config/imagecache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/imagecache.php -------------------------------------------------------------------------------- /config/laravellocalization.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/laravellocalization.php -------------------------------------------------------------------------------- /config/logging.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/logging.php -------------------------------------------------------------------------------- /config/logviewer.php: -------------------------------------------------------------------------------- 1 | env('LOGVIEWER_PATTERN', '*.log'), 5 | ]; 6 | -------------------------------------------------------------------------------- /config/mail.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/mail.php -------------------------------------------------------------------------------- /config/passport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/passport.php -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/queue.php -------------------------------------------------------------------------------- /config/repository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/repository.php -------------------------------------------------------------------------------- /config/rest-client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/rest-client.php -------------------------------------------------------------------------------- /config/services.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/services.php -------------------------------------------------------------------------------- /config/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/session.php -------------------------------------------------------------------------------- /config/someline-image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/someline-image.php -------------------------------------------------------------------------------- /config/tinker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/tinker.php -------------------------------------------------------------------------------- /config/trustedproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/trustedproxy.php -------------------------------------------------------------------------------- /config/view.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/config/view.php -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/database/.gitignore -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/database/factories/ModelFactory.php -------------------------------------------------------------------------------- /database/factories/UserFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/database/factories/UserFactory.php -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/database/seeds/DatabaseSeeder.php -------------------------------------------------------------------------------- /database/seeds/UsersTableSeeder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/database/seeds/UsersTableSeeder.php -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/package.json -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/phpunit.xml -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/.gitignore -------------------------------------------------------------------------------- /public/assets/css/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/css/app.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/css/app.main.css -------------------------------------------------------------------------------- /public/assets/css/app.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/css/app.theme.css -------------------------------------------------------------------------------- /public/assets/css/app.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/css/console.main.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/css/console.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/css/mobile.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/css/mobile.main.css -------------------------------------------------------------------------------- /public/assets/css/mobile.vendor.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/assets/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /public/assets/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /public/assets/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /public/assets/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/assets/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/assets/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/assets/fonts/pt-sans/PTC55F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/pt-sans/PTC55F.ttf -------------------------------------------------------------------------------- /public/assets/fonts/pt-sans/PTC75F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/pt-sans/PTC75F.ttf -------------------------------------------------------------------------------- /public/assets/fonts/pt-sans/PTN57F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/pt-sans/PTN57F.ttf -------------------------------------------------------------------------------- /public/assets/fonts/pt-sans/PTN77F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/pt-sans/PTN77F.ttf -------------------------------------------------------------------------------- /public/assets/fonts/pt-sans/PTS55F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/pt-sans/PTS55F.ttf -------------------------------------------------------------------------------- /public/assets/fonts/pt-sans/PTS56F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/pt-sans/PTS56F.ttf -------------------------------------------------------------------------------- /public/assets/fonts/pt-sans/PTS75F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/pt-sans/PTS75F.ttf -------------------------------------------------------------------------------- /public/assets/fonts/pt-sans/PTS76F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/pt-sans/PTS76F.ttf -------------------------------------------------------------------------------- /public/assets/fonts/sourcesanspro/sourcesanspro.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/fonts/sourcesanspro/sourcesanspro.woff -------------------------------------------------------------------------------- /public/assets/js/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/js/app.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/js/app.main.js -------------------------------------------------------------------------------- /public/assets/js/app.theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/js/app.theme.js -------------------------------------------------------------------------------- /public/assets/js/app.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/js/console.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/js/console.main.js -------------------------------------------------------------------------------- /public/assets/js/console.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/js/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/js/manifest.js -------------------------------------------------------------------------------- /public/assets/js/mobile.main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/js/mobile.main.js -------------------------------------------------------------------------------- /public/assets/js/mobile.vendor.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/assets/js/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/js/vendor.js -------------------------------------------------------------------------------- /public/assets/theme/app.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/theme/app.theme.css -------------------------------------------------------------------------------- /public/assets/theme/app.theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/theme/app.theme.js -------------------------------------------------------------------------------- /public/assets/theme/theme.style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/assets/theme/theme.style.css -------------------------------------------------------------------------------- /public/bower_components/bootstrap/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/.bower.json -------------------------------------------------------------------------------- /public/bower_components/bootstrap/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/Gemfile -------------------------------------------------------------------------------- /public/bower_components/bootstrap/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/Gemfile.lock -------------------------------------------------------------------------------- /public/bower_components/bootstrap/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/Gruntfile.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /public/bower_components/bootstrap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/LICENSE -------------------------------------------------------------------------------- /public/bower_components/bootstrap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/README.md -------------------------------------------------------------------------------- /public/bower_components/bootstrap/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/bower.json -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/grunt/.jshintrc -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/.jscsrc -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/.jshintrc -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/affix.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/alert.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/button.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/modal.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/popover.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/tab.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/js/transition.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/.csscomb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/.csscomb.json -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/.csslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/.csslintrc -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/alerts.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/alerts.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/badges.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/badges.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/bootstrap.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/bootstrap.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/breadcrumbs.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/buttons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/buttons.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/carousel.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/carousel.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/close.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/close.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/code.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/code.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/dropdowns.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/dropdowns.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/forms.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/glyphicons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/glyphicons.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/grid.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/input-groups.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/input-groups.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/jumbotron.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/jumbotron.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/labels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/labels.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/list-group.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/list-group.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/media.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/media.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/mixins.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/forms.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/mixins/forms.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/grid.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/mixins/grid.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/mixins/image.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/mixins/size.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/modals.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/modals.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/navbar.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/navbar.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/navs.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/navs.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/normalize.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/normalize.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/pager.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/pager.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/pagination.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/pagination.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/panels.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/panels.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/popovers.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/popovers.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/print.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/print.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/scaffolding.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/scaffolding.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/tables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/tables.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/theme.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/theme.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/thumbnails.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/tooltip.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/tooltip.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/type.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/type.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/utilities.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/variables.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/less/wells.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/less/wells.less -------------------------------------------------------------------------------- /public/bower_components/bootstrap/nuget/MyGet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/nuget/MyGet.ps1 -------------------------------------------------------------------------------- /public/bower_components/bootstrap/nuget/bootstrap.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/nuget/bootstrap.nuspec -------------------------------------------------------------------------------- /public/bower_components/bootstrap/package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/package.js -------------------------------------------------------------------------------- /public/bower_components/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/bootstrap/package.json -------------------------------------------------------------------------------- /public/bower_components/toastr/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/.bower.json -------------------------------------------------------------------------------- /public/bower_components/toastr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/LICENSE -------------------------------------------------------------------------------- /public/bower_components/toastr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/README.md -------------------------------------------------------------------------------- /public/bower_components/toastr/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/bower.json -------------------------------------------------------------------------------- /public/bower_components/toastr/toastr.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/toastr.css -------------------------------------------------------------------------------- /public/bower_components/toastr/toastr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/toastr.js -------------------------------------------------------------------------------- /public/bower_components/toastr/toastr.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/toastr.js.map -------------------------------------------------------------------------------- /public/bower_components/toastr/toastr.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/toastr.less -------------------------------------------------------------------------------- /public/bower_components/toastr/toastr.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/toastr.min.css -------------------------------------------------------------------------------- /public/bower_components/toastr/toastr.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/toastr.min.js -------------------------------------------------------------------------------- /public/bower_components/toastr/toastr.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/bower_components/toastr/toastr.scss -------------------------------------------------------------------------------- /public/css/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/css/app.css -------------------------------------------------------------------------------- /public/css/theme.src.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/css/theme.src.css -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /public/fonts/Simple-Line-Icons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/Simple-Line-Icons.eot -------------------------------------------------------------------------------- /public/fonts/Simple-Line-Icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/Simple-Line-Icons.svg -------------------------------------------------------------------------------- /public/fonts/Simple-Line-Icons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/Simple-Line-Icons.ttf -------------------------------------------------------------------------------- /public/fonts/Simple-Line-Icons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/Simple-Line-Icons.woff -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /public/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /public/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /public/fonts/pt-sans/PTC55F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/pt-sans/PTC55F.ttf -------------------------------------------------------------------------------- /public/fonts/pt-sans/PTC75F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/pt-sans/PTC75F.ttf -------------------------------------------------------------------------------- /public/fonts/pt-sans/PTN57F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/pt-sans/PTN57F.ttf -------------------------------------------------------------------------------- /public/fonts/pt-sans/PTN77F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/pt-sans/PTN77F.ttf -------------------------------------------------------------------------------- /public/fonts/pt-sans/PTS55F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/pt-sans/PTS55F.ttf -------------------------------------------------------------------------------- /public/fonts/pt-sans/PTS56F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/pt-sans/PTS56F.ttf -------------------------------------------------------------------------------- /public/fonts/pt-sans/PTS75F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/pt-sans/PTS75F.ttf -------------------------------------------------------------------------------- /public/fonts/pt-sans/PTS76F.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/pt-sans/PTS76F.ttf -------------------------------------------------------------------------------- /public/fonts/sourcesanspro/sourcesanspro-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/sourcesanspro/sourcesanspro-bold.woff -------------------------------------------------------------------------------- /public/fonts/sourcesanspro/sourcesanspro-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/sourcesanspro/sourcesanspro-light.woff -------------------------------------------------------------------------------- /public/fonts/sourcesanspro/sourcesanspro.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/fonts/sourcesanspro/sourcesanspro.woff -------------------------------------------------------------------------------- /public/images/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/index.php -------------------------------------------------------------------------------- /public/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/js/app.js -------------------------------------------------------------------------------- /public/js/theme.src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/js/theme.src.js -------------------------------------------------------------------------------- /public/mix-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/mix-manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/vendors/bower_components/SHA-1/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/SHA-1/.bower.json -------------------------------------------------------------------------------- /public/vendors/bower_components/SHA-1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/SHA-1/LICENSE -------------------------------------------------------------------------------- /public/vendors/bower_components/SHA-1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/SHA-1/README.md -------------------------------------------------------------------------------- /public/vendors/bower_components/SHA-1/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/SHA-1/bower.json -------------------------------------------------------------------------------- /public/vendors/bower_components/SHA-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/SHA-1/package.json -------------------------------------------------------------------------------- /public/vendors/bower_components/SHA-1/sha1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/SHA-1/sha1.js -------------------------------------------------------------------------------- /public/vendors/bower_components/angular-file-upload/.gitignore: -------------------------------------------------------------------------------- 1 | .temp 2 | .idea 3 | *.iml 4 | node_modules 5 | bower_components 6 | -------------------------------------------------------------------------------- /public/vendors/bower_components/angular-file-upload/src/outro.js: -------------------------------------------------------------------------------- 1 | return module; 2 | })); -------------------------------------------------------------------------------- /public/vendors/bower_components/angular-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular-route/README.md -------------------------------------------------------------------------------- /public/vendors/bower_components/angular-route/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular-route/bower.json -------------------------------------------------------------------------------- /public/vendors/bower_components/angular-route/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular-route/index.js -------------------------------------------------------------------------------- /public/vendors/bower_components/angular-smart-table/src/bottom.txt: -------------------------------------------------------------------------------- 1 | })(angular); -------------------------------------------------------------------------------- /public/vendors/bower_components/angular-smart-table/src/top.txt: -------------------------------------------------------------------------------- 1 | (function (ng, undefined){ 2 | 'use strict'; 3 | -------------------------------------------------------------------------------- /public/vendors/bower_components/angular-touch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular-touch/README.md -------------------------------------------------------------------------------- /public/vendors/bower_components/angular-touch/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular-touch/bower.json -------------------------------------------------------------------------------- /public/vendors/bower_components/angular/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular/.bower.json -------------------------------------------------------------------------------- /public/vendors/bower_components/angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular/README.md -------------------------------------------------------------------------------- /public/vendors/bower_components/angular/angular-csp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular/angular-csp.css -------------------------------------------------------------------------------- /public/vendors/bower_components/angular/angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular/angular.js -------------------------------------------------------------------------------- /public/vendors/bower_components/angular/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular/angular.min.js -------------------------------------------------------------------------------- /public/vendors/bower_components/angular/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular/bower.json -------------------------------------------------------------------------------- /public/vendors/bower_components/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angular/package.json -------------------------------------------------------------------------------- /public/vendors/bower_components/angulartics/.bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angulartics/.bower.json -------------------------------------------------------------------------------- /public/vendors/bower_components/angulartics/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "components" 3 | } 4 | -------------------------------------------------------------------------------- /public/vendors/bower_components/angulartics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angulartics/.gitignore -------------------------------------------------------------------------------- /public/vendors/bower_components/angulartics/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angulartics/Gruntfile.js -------------------------------------------------------------------------------- /public/vendors/bower_components/angulartics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angulartics/LICENSE -------------------------------------------------------------------------------- /public/vendors/bower_components/angulartics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angulartics/README.md -------------------------------------------------------------------------------- /public/vendors/bower_components/angulartics/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angulartics/bower.json -------------------------------------------------------------------------------- /public/vendors/bower_components/angulartics/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/someline/someline-starter/HEAD/public/vendors/bower_components/angulartics/package.json -------------------------------------------------------------------------------- /public/vendors/bower_components/angulartics/samples/partials/a.tpl.html: -------------------------------------------------------------------------------- 1 |