stylish 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +7 -10
- data/ARCHITECTURE.md +96 -0
- data/Gemfile +8 -0
- data/README.md +25 -29
- data/Rakefile +24 -0
- data/bin/stylish +33 -0
- data/lib/stylish.rb +36 -1
- data/lib/stylish/configuration.rb +37 -0
- data/lib/stylish/core_ext.rb +20 -0
- data/lib/stylish/developer.rb +13 -0
- data/lib/stylish/developer/config.rb +19 -0
- data/lib/stylish/developer/environment.rb +75 -0
- data/lib/stylish/developer/listing.rb +85 -0
- data/lib/stylish/developer/model_delegator.rb +51 -0
- data/lib/stylish/developer/modification.rb +139 -0
- data/lib/stylish/developer/path.rb +168 -0
- data/lib/stylish/developer/route.rb +97 -0
- data/lib/stylish/developer/server.rb +40 -0
- data/lib/stylish/engine.rb +12 -0
- data/lib/stylish/fs.rb +59 -0
- data/lib/stylish/manifest.rb +100 -0
- data/lib/stylish/models.rb +119 -0
- data/lib/stylish/models/component.rb +19 -0
- data/lib/stylish/models/layout.rb +19 -0
- data/lib/stylish/models/library.rb +134 -0
- data/lib/stylish/models/package.rb +156 -0
- data/lib/stylish/models/script.rb +10 -0
- data/lib/stylish/models/stylesheet.rb +9 -0
- data/lib/stylish/models/template.rb +9 -0
- data/lib/stylish/models/theme.rb +8 -0
- data/lib/stylish/util.rb +20 -0
- data/lib/stylish/version.rb +1 -1
- data/library/config.json +4 -0
- data/library/second-theme/manifest.json +8 -0
- data/library/second-theme/manifest.yml +6 -0
- data/library/second-theme/templates/footers/footer-01.html +3 -0
- data/library/second-theme/templates/footers/footer-02.html +3 -0
- data/library/second-theme/templates/headers/header-01.html +3 -0
- data/library/second-theme/templates/headers/header-02.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/second-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/components/footers/footer-01.json +5 -0
- data/library/test-theme/components/footers/footer-02.json +5 -0
- data/library/test-theme/components/headers/header-01.json +5 -0
- data/library/test-theme/components/headers/header-02.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/library/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/library/test-theme/manifest.json +8 -0
- data/library/test-theme/manifest.yml +6 -0
- data/library/test-theme/pages/page-01.json +11 -0
- data/library/test-theme/templates/footers/footer-01.html +3 -0
- data/library/test-theme/templates/footers/footer-02.html +3 -0
- data/library/test-theme/templates/headers/header-01.html +3 -0
- data/library/test-theme/templates/headers/header-02.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/library/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/library/test-theme/templates/layouts/standard-layout.html +10 -0
- data/spec/acceptance/listing_assets_spec.rb +20 -0
- data/spec/acceptance/model_browsing_spec.rb +21 -0
- data/spec/acceptance/model_creation_spec.rb +16 -0
- data/spec/acceptance/model_deleting_spec.rb +10 -0
- data/spec/acceptance/model_updating_spec.rb +12 -0
- data/spec/acceptance/modifying_assets_spec.rb +50 -0
- data/spec/acceptance/server_info_spec.rb +10 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/javascripts/test.coffee +4 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/assets/stylesheets/test.css.scss +6 -0
- data/spec/dummy/app/assets/stylesheets/writable/existing.scss.css +0 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +30 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +37 -0
- data/spec/dummy/config/environments/production.rb +82 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/assets.rb +8 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/db/migrate/20140822065900_create_books.rb +11 -0
- data/spec/dummy/db/migrate/20140822065916_create_authors.rb +9 -0
- data/spec/dummy/db/migrate/20140824215902_create_users.rb +10 -0
- data/spec/dummy/db/migrate/20140826193259_create_libraries.rb +10 -0
- data/spec/dummy/db/schema.rb +37 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/fixtures/config.json +3 -0
- data/spec/fixtures/test-theme/components/footers/footer-01.json +5 -0
- data/spec/fixtures/test-theme/components/footers/footer-02.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-01.json +5 -0
- data/spec/fixtures/test-theme/components/headers/header-02.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-01.json +5 -0
- data/spec/fixtures/test-theme/components/landing-page-blocks/landing-page-02.json +5 -0
- data/spec/fixtures/test-theme/manifest.json +8 -0
- data/spec/fixtures/test-theme/manifest.yml +6 -0
- data/spec/fixtures/test-theme/pages/page-01.json +11 -0
- data/spec/fixtures/test-theme/templates/footers/footer-01.html +3 -0
- data/spec/fixtures/test-theme/templates/footers/footer-02.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-01.html +3 -0
- data/spec/fixtures/test-theme/templates/headers/header-02.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-01.html +3 -0
- data/spec/fixtures/test-theme/templates/landing-page-blocks/landing-page-block-02.html +3 -0
- data/spec/fixtures/test-theme/templates/layouts/standard-01.html +9 -0
- data/spec/lib/stylish/configuration_spec.rb +8 -0
- data/spec/lib/stylish/developer/path_spec.rb +36 -0
- data/spec/lib/stylish/developer/route_spec.rb +5 -0
- data/spec/lib/stylish/manifest_spec.rb +48 -0
- data/spec/lib/stylish/models/library_spec.rb +38 -0
- data/spec/lib/stylish/models/package_spec.rb +35 -0
- data/spec/lib/stylish/models_spec.rb +12 -0
- data/spec/spec_helper.rb +38 -0
- data/spec/support/json_helper.rb +7 -0
- data/spec/test.css.scss +6 -0
- data/stylish.gemspec +17 -2
- data/support/editor-app/.gitignore +2 -0
- data/support/editor-app/development/bower.json +9 -0
- data/support/editor-app/development/package.json +28 -0
- data/support/editor-app/development/semantic/components/accordion.css +257 -0
- data/support/editor-app/development/semantic/components/accordion.js +558 -0
- data/support/editor-app/development/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/development/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/development/semantic/components/ad.css +277 -0
- data/support/editor-app/development/semantic/components/ad.min.css +11 -0
- data/support/editor-app/development/semantic/components/api.js +851 -0
- data/support/editor-app/development/semantic/components/api.min.js +11 -0
- data/support/editor-app/development/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/development/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/development/semantic/components/button.css +2391 -0
- data/support/editor-app/development/semantic/components/button.min.css +11 -0
- data/support/editor-app/development/semantic/components/card.css +758 -0
- data/support/editor-app/development/semantic/components/card.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.css +514 -0
- data/support/editor-app/development/semantic/components/checkbox.js +507 -0
- data/support/editor-app/development/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/development/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/development/semantic/components/comment.css +260 -0
- data/support/editor-app/development/semantic/components/comment.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.css +187 -0
- data/support/editor-app/development/semantic/components/dimmer.js +627 -0
- data/support/editor-app/development/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/development/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/development/semantic/components/divider.css +244 -0
- data/support/editor-app/development/semantic/components/divider.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/development/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/development/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/development/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/development/semantic/components/feed.css +277 -0
- data/support/editor-app/development/semantic/components/feed.min.css +11 -0
- data/support/editor-app/development/semantic/components/flag.css +1017 -0
- data/support/editor-app/development/semantic/components/flag.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.css +875 -0
- data/support/editor-app/development/semantic/components/form.js +1039 -0
- data/support/editor-app/development/semantic/components/form.min.css +11 -0
- data/support/editor-app/development/semantic/components/form.min.js +11 -0
- data/support/editor-app/development/semantic/components/grid.css +1816 -0
- data/support/editor-app/development/semantic/components/grid.min.css +11 -0
- data/support/editor-app/development/semantic/components/header.css +572 -0
- data/support/editor-app/development/semantic/components/header.min.css +11 -0
- data/support/editor-app/development/semantic/components/icon.css +2127 -0
- data/support/editor-app/development/semantic/components/icon.min.css +11 -0
- data/support/editor-app/development/semantic/components/image.css +275 -0
- data/support/editor-app/development/semantic/components/image.min.css +11 -0
- data/support/editor-app/development/semantic/components/input.css +455 -0
- data/support/editor-app/development/semantic/components/input.min.css +11 -0
- data/support/editor-app/development/semantic/components/item.css +458 -0
- data/support/editor-app/development/semantic/components/item.min.css +11 -0
- data/support/editor-app/development/semantic/components/label.css +930 -0
- data/support/editor-app/development/semantic/components/label.min.css +11 -0
- data/support/editor-app/development/semantic/components/list.css +879 -0
- data/support/editor-app/development/semantic/components/list.min.css +11 -0
- data/support/editor-app/development/semantic/components/loader.css +279 -0
- data/support/editor-app/development/semantic/components/loader.min.css +11 -0
- data/support/editor-app/development/semantic/components/menu.css +1596 -0
- data/support/editor-app/development/semantic/components/menu.min.css +11 -0
- data/support/editor-app/development/semantic/components/message.css +422 -0
- data/support/editor-app/development/semantic/components/message.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.css +431 -0
- data/support/editor-app/development/semantic/components/modal.js +860 -0
- data/support/editor-app/development/semantic/components/modal.min.css +11 -0
- data/support/editor-app/development/semantic/components/modal.min.js +11 -0
- data/support/editor-app/development/semantic/components/nag.css +149 -0
- data/support/editor-app/development/semantic/components/nag.js +477 -0
- data/support/editor-app/development/semantic/components/nag.min.css +11 -0
- data/support/editor-app/development/semantic/components/nag.min.js +11 -0
- data/support/editor-app/development/semantic/components/popup.css +294 -0
- data/support/editor-app/development/semantic/components/popup.js +1187 -0
- data/support/editor-app/development/semantic/components/popup.min.css +11 -0
- data/support/editor-app/development/semantic/components/popup.min.js +11 -0
- data/support/editor-app/development/semantic/components/progress.css +449 -0
- data/support/editor-app/development/semantic/components/progress.js +785 -0
- data/support/editor-app/development/semantic/components/progress.min.css +11 -0
- data/support/editor-app/development/semantic/components/progress.min.js +11 -0
- data/support/editor-app/development/semantic/components/rail.css +125 -0
- data/support/editor-app/development/semantic/components/rail.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.css +262 -0
- data/support/editor-app/development/semantic/components/rating.js +451 -0
- data/support/editor-app/development/semantic/components/rating.min.css +11 -0
- data/support/editor-app/development/semantic/components/rating.min.js +11 -0
- data/support/editor-app/development/semantic/components/reset.css +430 -0
- data/support/editor-app/development/semantic/components/reset.min.css +11 -0
- data/support/editor-app/development/semantic/components/reveal.css +294 -0
- data/support/editor-app/development/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.css +330 -0
- data/support/editor-app/development/semantic/components/search.js +1055 -0
- data/support/editor-app/development/semantic/components/search.min.css +11 -0
- data/support/editor-app/development/semantic/components/search.min.js +11 -0
- data/support/editor-app/development/semantic/components/segment.css +590 -0
- data/support/editor-app/development/semantic/components/segment.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.css +155 -0
- data/support/editor-app/development/semantic/components/shape.js +830 -0
- data/support/editor-app/development/semantic/components/shape.min.css +11 -0
- data/support/editor-app/development/semantic/components/shape.min.js +11 -0
- data/support/editor-app/development/semantic/components/sidebar.css +621 -0
- data/support/editor-app/development/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/development/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/development/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/development/semantic/components/site.css +147 -0
- data/support/editor-app/development/semantic/components/site.js +487 -0
- data/support/editor-app/development/semantic/components/site.min.css +11 -0
- data/support/editor-app/development/semantic/components/site.min.js +11 -0
- data/support/editor-app/development/semantic/components/state.js +690 -0
- data/support/editor-app/development/semantic/components/state.min.js +11 -0
- data/support/editor-app/development/semantic/components/statistic.css +410 -0
- data/support/editor-app/development/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/development/semantic/components/step.css +433 -0
- data/support/editor-app/development/semantic/components/step.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.css +80 -0
- data/support/editor-app/development/semantic/components/sticky.js +775 -0
- data/support/editor-app/development/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/development/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/development/semantic/components/tab.css +93 -0
- data/support/editor-app/development/semantic/components/tab.js +787 -0
- data/support/editor-app/development/semantic/components/tab.min.css +11 -0
- data/support/editor-app/development/semantic/components/tab.min.js +11 -0
- data/support/editor-app/development/semantic/components/table.css +999 -0
- data/support/editor-app/development/semantic/components/table.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.css +2152 -0
- data/support/editor-app/development/semantic/components/transition.js +936 -0
- data/support/editor-app/development/semantic/components/transition.min.css +11 -0
- data/support/editor-app/development/semantic/components/transition.min.js +11 -0
- data/support/editor-app/development/semantic/components/video.css +126 -0
- data/support/editor-app/development/semantic/components/video.js +540 -0
- data/support/editor-app/development/semantic/components/video.min.css +11 -0
- data/support/editor-app/development/semantic/components/video.min.js +11 -0
- data/support/editor-app/development/semantic/components/visibility.js +970 -0
- data/support/editor-app/development/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/development/semantic/semantic.css +31768 -0
- data/support/editor-app/development/semantic/semantic.js +18317 -0
- data/support/editor-app/development/semantic/semantic.min.css +11 -0
- data/support/editor-app/development/semantic/semantic.min.js +17 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/development/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/development/src/apis/index.coffee +35 -0
- data/support/editor-app/development/src/components/editor.cjsx +58 -0
- data/support/editor-app/development/src/components/editor_drawer.cjsx +7 -0
- data/support/editor-app/development/src/components/header.cjsx +12 -0
- data/support/editor-app/development/src/components/index.coffee +9 -0
- data/support/editor-app/development/src/components/menus/icon_grid.cjsx +0 -0
- data/support/editor-app/development/src/components/sidebar.cjsx +24 -0
- data/support/editor-app/development/src/components/tiled_grid.cjsx +35 -0
- data/support/editor-app/development/src/index.cjsx +82 -0
- data/support/editor-app/development/src/lib/util.coffee +48 -0
- data/support/editor-app/development/src/pages/home.cjsx +46 -0
- data/support/editor-app/development/src/pages/index.coffee +6 -0
- data/support/editor-app/development/src/pages/package_details.cjsx +55 -0
- data/support/editor-app/development/src/registry.coffee +35 -0
- data/support/editor-app/development/src/styles/components/tiled_grid.css.scss +5 -0
- data/support/editor-app/development/src/styles/index.css.scss +240 -0
- data/support/editor-app/development/src/sugar.cjsx +126 -0
- data/support/editor-app/development/webpack.config.js +53 -0
- data/support/editor-app/dist/base.css +0 -0
- data/support/editor-app/dist/toolit.js +62 -0
- data/support/editor-app/dist/toolkit.js +44573 -0
- data/support/editor-app/index.html +50 -0
- data/support/editor-app/package.json +15 -0
- data/support/editor-app/semantic/components/accordion.css +257 -0
- data/support/editor-app/semantic/components/accordion.js +558 -0
- data/support/editor-app/semantic/components/accordion.min.css +11 -0
- data/support/editor-app/semantic/components/accordion.min.js +11 -0
- data/support/editor-app/semantic/components/ad.css +277 -0
- data/support/editor-app/semantic/components/ad.min.css +11 -0
- data/support/editor-app/semantic/components/api.js +851 -0
- data/support/editor-app/semantic/components/api.min.js +11 -0
- data/support/editor-app/semantic/components/breadcrumb.css +125 -0
- data/support/editor-app/semantic/components/breadcrumb.min.css +11 -0
- data/support/editor-app/semantic/components/button.css +2391 -0
- data/support/editor-app/semantic/components/button.min.css +11 -0
- data/support/editor-app/semantic/components/card.css +758 -0
- data/support/editor-app/semantic/components/card.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.css +514 -0
- data/support/editor-app/semantic/components/checkbox.js +507 -0
- data/support/editor-app/semantic/components/checkbox.min.css +11 -0
- data/support/editor-app/semantic/components/checkbox.min.js +11 -0
- data/support/editor-app/semantic/components/comment.css +260 -0
- data/support/editor-app/semantic/components/comment.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.css +187 -0
- data/support/editor-app/semantic/components/dimmer.js +627 -0
- data/support/editor-app/semantic/components/dimmer.min.css +11 -0
- data/support/editor-app/semantic/components/dimmer.min.js +11 -0
- data/support/editor-app/semantic/components/divider.css +244 -0
- data/support/editor-app/semantic/components/divider.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.css +1085 -0
- data/support/editor-app/semantic/components/dropdown.js +1757 -0
- data/support/editor-app/semantic/components/dropdown.min.css +11 -0
- data/support/editor-app/semantic/components/dropdown.min.js +11 -0
- data/support/editor-app/semantic/components/feed.css +277 -0
- data/support/editor-app/semantic/components/feed.min.css +11 -0
- data/support/editor-app/semantic/components/flag.css +1017 -0
- data/support/editor-app/semantic/components/flag.min.css +11 -0
- data/support/editor-app/semantic/components/form.css +875 -0
- data/support/editor-app/semantic/components/form.js +1039 -0
- data/support/editor-app/semantic/components/form.min.css +11 -0
- data/support/editor-app/semantic/components/form.min.js +11 -0
- data/support/editor-app/semantic/components/grid.css +1816 -0
- data/support/editor-app/semantic/components/grid.min.css +11 -0
- data/support/editor-app/semantic/components/header.css +572 -0
- data/support/editor-app/semantic/components/header.min.css +11 -0
- data/support/editor-app/semantic/components/icon.css +2127 -0
- data/support/editor-app/semantic/components/icon.min.css +11 -0
- data/support/editor-app/semantic/components/image.css +275 -0
- data/support/editor-app/semantic/components/image.min.css +11 -0
- data/support/editor-app/semantic/components/input.css +455 -0
- data/support/editor-app/semantic/components/input.min.css +11 -0
- data/support/editor-app/semantic/components/item.css +458 -0
- data/support/editor-app/semantic/components/item.min.css +11 -0
- data/support/editor-app/semantic/components/label.css +930 -0
- data/support/editor-app/semantic/components/label.min.css +11 -0
- data/support/editor-app/semantic/components/list.css +879 -0
- data/support/editor-app/semantic/components/list.min.css +11 -0
- data/support/editor-app/semantic/components/loader.css +279 -0
- data/support/editor-app/semantic/components/loader.min.css +11 -0
- data/support/editor-app/semantic/components/menu.css +1596 -0
- data/support/editor-app/semantic/components/menu.min.css +11 -0
- data/support/editor-app/semantic/components/message.css +422 -0
- data/support/editor-app/semantic/components/message.min.css +11 -0
- data/support/editor-app/semantic/components/modal.css +431 -0
- data/support/editor-app/semantic/components/modal.js +860 -0
- data/support/editor-app/semantic/components/modal.min.css +11 -0
- data/support/editor-app/semantic/components/modal.min.js +11 -0
- data/support/editor-app/semantic/components/nag.css +149 -0
- data/support/editor-app/semantic/components/nag.js +477 -0
- data/support/editor-app/semantic/components/nag.min.css +11 -0
- data/support/editor-app/semantic/components/nag.min.js +11 -0
- data/support/editor-app/semantic/components/popup.css +294 -0
- data/support/editor-app/semantic/components/popup.js +1187 -0
- data/support/editor-app/semantic/components/popup.min.css +11 -0
- data/support/editor-app/semantic/components/popup.min.js +11 -0
- data/support/editor-app/semantic/components/progress.css +449 -0
- data/support/editor-app/semantic/components/progress.js +785 -0
- data/support/editor-app/semantic/components/progress.min.css +11 -0
- data/support/editor-app/semantic/components/progress.min.js +11 -0
- data/support/editor-app/semantic/components/rail.css +125 -0
- data/support/editor-app/semantic/components/rail.min.css +11 -0
- data/support/editor-app/semantic/components/rating.css +262 -0
- data/support/editor-app/semantic/components/rating.js +451 -0
- data/support/editor-app/semantic/components/rating.min.css +11 -0
- data/support/editor-app/semantic/components/rating.min.js +11 -0
- data/support/editor-app/semantic/components/reset.css +430 -0
- data/support/editor-app/semantic/components/reset.min.css +11 -0
- data/support/editor-app/semantic/components/reveal.css +294 -0
- data/support/editor-app/semantic/components/reveal.min.css +11 -0
- data/support/editor-app/semantic/components/search.css +330 -0
- data/support/editor-app/semantic/components/search.js +1055 -0
- data/support/editor-app/semantic/components/search.min.css +11 -0
- data/support/editor-app/semantic/components/search.min.js +11 -0
- data/support/editor-app/semantic/components/segment.css +590 -0
- data/support/editor-app/semantic/components/segment.min.css +11 -0
- data/support/editor-app/semantic/components/shape.css +155 -0
- data/support/editor-app/semantic/components/shape.js +830 -0
- data/support/editor-app/semantic/components/shape.min.css +11 -0
- data/support/editor-app/semantic/components/shape.min.js +11 -0
- data/support/editor-app/semantic/components/sidebar.css +621 -0
- data/support/editor-app/semantic/components/sidebar.js +1084 -0
- data/support/editor-app/semantic/components/sidebar.min.css +11 -0
- data/support/editor-app/semantic/components/sidebar.min.js +11 -0
- data/support/editor-app/semantic/components/site.css +147 -0
- data/support/editor-app/semantic/components/site.js +487 -0
- data/support/editor-app/semantic/components/site.min.css +11 -0
- data/support/editor-app/semantic/components/site.min.js +11 -0
- data/support/editor-app/semantic/components/state.js +690 -0
- data/support/editor-app/semantic/components/state.min.js +11 -0
- data/support/editor-app/semantic/components/statistic.css +410 -0
- data/support/editor-app/semantic/components/statistic.min.css +11 -0
- data/support/editor-app/semantic/components/step.css +433 -0
- data/support/editor-app/semantic/components/step.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.css +80 -0
- data/support/editor-app/semantic/components/sticky.js +775 -0
- data/support/editor-app/semantic/components/sticky.min.css +11 -0
- data/support/editor-app/semantic/components/sticky.min.js +11 -0
- data/support/editor-app/semantic/components/tab.css +93 -0
- data/support/editor-app/semantic/components/tab.js +787 -0
- data/support/editor-app/semantic/components/tab.min.css +11 -0
- data/support/editor-app/semantic/components/tab.min.js +11 -0
- data/support/editor-app/semantic/components/table.css +999 -0
- data/support/editor-app/semantic/components/table.min.css +11 -0
- data/support/editor-app/semantic/components/transition.css +2152 -0
- data/support/editor-app/semantic/components/transition.js +936 -0
- data/support/editor-app/semantic/components/transition.min.css +11 -0
- data/support/editor-app/semantic/components/transition.min.js +11 -0
- data/support/editor-app/semantic/components/video.css +126 -0
- data/support/editor-app/semantic/components/video.js +540 -0
- data/support/editor-app/semantic/components/video.min.css +11 -0
- data/support/editor-app/semantic/components/video.min.js +11 -0
- data/support/editor-app/semantic/components/visibility.js +970 -0
- data/support/editor-app/semantic/components/visibility.min.js +11 -0
- data/support/editor-app/semantic/semantic.css +31768 -0
- data/support/editor-app/semantic/semantic.js +18317 -0
- data/support/editor-app/semantic/semantic.min.css +11 -0
- data/support/editor-app/semantic/semantic.min.js +17 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.svg +450 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/basic/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.eot +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.otf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.svg +504 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.ttf +0 -0
- data/support/editor-app/semantic/themes/default/assets/fonts/icons.woff +0 -0
- data/support/editor-app/semantic/themes/default/assets/images/flags.png +0 -0
- data/support/editor-app/vendor/jquery.js +8829 -0
- data/support/library-server/Gemfile +0 -0
- data/support/library-server/config.ru +4 -0
- metadata +740 -7
@@ -0,0 +1,627 @@
|
|
1
|
+
/*
|
2
|
+
* # Semantic - Dimmer
|
3
|
+
* http://github.com/semantic-org/semantic-ui/
|
4
|
+
*
|
5
|
+
*
|
6
|
+
* Copyright 2014 Contributor
|
7
|
+
* Released under the MIT license
|
8
|
+
* http://opensource.org/licenses/MIT
|
9
|
+
*
|
10
|
+
*/
|
11
|
+
|
12
|
+
;(function ( $, window, document, undefined ) {
|
13
|
+
|
14
|
+
$.fn.dimmer = function(parameters) {
|
15
|
+
var
|
16
|
+
$allModules = $(this),
|
17
|
+
|
18
|
+
time = new Date().getTime(),
|
19
|
+
performance = [],
|
20
|
+
|
21
|
+
query = arguments[0],
|
22
|
+
methodInvoked = (typeof query == 'string'),
|
23
|
+
queryArguments = [].slice.call(arguments, 1),
|
24
|
+
|
25
|
+
returnedValue
|
26
|
+
;
|
27
|
+
|
28
|
+
$allModules
|
29
|
+
.each(function() {
|
30
|
+
var
|
31
|
+
settings = ( $.isPlainObject(parameters) )
|
32
|
+
? $.extend(true, {}, $.fn.dimmer.settings, parameters)
|
33
|
+
: $.extend({}, $.fn.dimmer.settings),
|
34
|
+
|
35
|
+
selector = settings.selector,
|
36
|
+
namespace = settings.namespace,
|
37
|
+
className = settings.className,
|
38
|
+
error = settings.error,
|
39
|
+
|
40
|
+
eventNamespace = '.' + namespace,
|
41
|
+
moduleNamespace = 'module-' + namespace,
|
42
|
+
moduleSelector = $allModules.selector || '',
|
43
|
+
|
44
|
+
clickEvent = ('ontouchstart' in document.documentElement)
|
45
|
+
? 'touchstart'
|
46
|
+
: 'click',
|
47
|
+
|
48
|
+
$module = $(this),
|
49
|
+
$dimmer,
|
50
|
+
$dimmable,
|
51
|
+
|
52
|
+
element = this,
|
53
|
+
instance = $module.data(moduleNamespace),
|
54
|
+
module
|
55
|
+
;
|
56
|
+
|
57
|
+
module = {
|
58
|
+
|
59
|
+
preinitialize: function() {
|
60
|
+
if( module.is.dimmer() ) {
|
61
|
+
$dimmable = $module.parent();
|
62
|
+
$dimmer = $module;
|
63
|
+
}
|
64
|
+
else {
|
65
|
+
$dimmable = $module;
|
66
|
+
if( module.has.dimmer() ) {
|
67
|
+
if(settings.dimmerName) {
|
68
|
+
$dimmer = $dimmable.children(selector.dimmer).filter('.' + settings.dimmerName);
|
69
|
+
}
|
70
|
+
else {
|
71
|
+
$dimmer = $dimmable.children(selector.dimmer);
|
72
|
+
}
|
73
|
+
}
|
74
|
+
else {
|
75
|
+
$dimmer = module.create();
|
76
|
+
}
|
77
|
+
}
|
78
|
+
},
|
79
|
+
|
80
|
+
initialize: function() {
|
81
|
+
module.debug('Initializing dimmer', settings);
|
82
|
+
if(settings.on == 'hover') {
|
83
|
+
$dimmable
|
84
|
+
.on('mouseenter' + eventNamespace, module.show)
|
85
|
+
.on('mouseleave' + eventNamespace, module.hide)
|
86
|
+
;
|
87
|
+
}
|
88
|
+
else if(settings.on == 'click') {
|
89
|
+
$dimmable
|
90
|
+
.on(clickEvent + eventNamespace, module.toggle)
|
91
|
+
;
|
92
|
+
}
|
93
|
+
if( module.is.page() ) {
|
94
|
+
module.debug('Setting as a page dimmer', $dimmable);
|
95
|
+
module.set.pageDimmer();
|
96
|
+
}
|
97
|
+
|
98
|
+
if( module.is.closable() ) {
|
99
|
+
module.verbose('Adding dimmer close event', $dimmer);
|
100
|
+
$dimmer
|
101
|
+
.on(clickEvent + eventNamespace, module.event.click)
|
102
|
+
;
|
103
|
+
}
|
104
|
+
module.set.dimmable();
|
105
|
+
module.instantiate();
|
106
|
+
},
|
107
|
+
|
108
|
+
instantiate: function() {
|
109
|
+
module.verbose('Storing instance of module', module);
|
110
|
+
instance = module;
|
111
|
+
$module
|
112
|
+
.data(moduleNamespace, instance)
|
113
|
+
;
|
114
|
+
},
|
115
|
+
|
116
|
+
destroy: function() {
|
117
|
+
module.verbose('Destroying previous module', $dimmer);
|
118
|
+
$module
|
119
|
+
.removeData(moduleNamespace)
|
120
|
+
;
|
121
|
+
$dimmable
|
122
|
+
.off(eventNamespace)
|
123
|
+
;
|
124
|
+
$dimmer
|
125
|
+
.off(eventNamespace)
|
126
|
+
;
|
127
|
+
},
|
128
|
+
|
129
|
+
event: {
|
130
|
+
click: function(event) {
|
131
|
+
module.verbose('Determining if event occured on dimmer', event);
|
132
|
+
if( $dimmer.find(event.target).length === 0 || $(event.target).is(selector.content) ) {
|
133
|
+
module.hide();
|
134
|
+
event.stopImmediatePropagation();
|
135
|
+
}
|
136
|
+
}
|
137
|
+
},
|
138
|
+
|
139
|
+
addContent: function(element) {
|
140
|
+
var
|
141
|
+
$content = $(element)
|
142
|
+
;
|
143
|
+
module.debug('Add content to dimmer', $content);
|
144
|
+
if($content.parent()[0] !== $dimmer[0]) {
|
145
|
+
$content.detach().appendTo($dimmer);
|
146
|
+
}
|
147
|
+
},
|
148
|
+
|
149
|
+
create: function() {
|
150
|
+
var
|
151
|
+
$element = $( settings.template.dimmer() )
|
152
|
+
;
|
153
|
+
if(settings.variation) {
|
154
|
+
module.debug('Creating dimmer with variation', settings.variation);
|
155
|
+
$element.addClass(className.variation);
|
156
|
+
}
|
157
|
+
if(settings.dimmerName) {
|
158
|
+
module.debug('Creating named dimmer', settings.dimmerName);
|
159
|
+
$element.addClass(settings.dimmerName);
|
160
|
+
}
|
161
|
+
$element
|
162
|
+
.appendTo($dimmable)
|
163
|
+
;
|
164
|
+
return $element;
|
165
|
+
},
|
166
|
+
|
167
|
+
show: function(callback) {
|
168
|
+
callback = $.isFunction(callback)
|
169
|
+
? callback
|
170
|
+
: function(){}
|
171
|
+
;
|
172
|
+
module.debug('Showing dimmer', $dimmer, settings);
|
173
|
+
if( (!module.is.dimmed() || module.is.animating()) && module.is.enabled() ) {
|
174
|
+
module.animate.show(callback);
|
175
|
+
settings.onShow.call(element);
|
176
|
+
settings.onChange.call(element);
|
177
|
+
}
|
178
|
+
else {
|
179
|
+
module.debug('Dimmer is already shown or disabled');
|
180
|
+
}
|
181
|
+
},
|
182
|
+
|
183
|
+
hide: function(callback) {
|
184
|
+
callback = $.isFunction(callback)
|
185
|
+
? callback
|
186
|
+
: function(){}
|
187
|
+
;
|
188
|
+
if( module.is.dimmed() || module.is.animating() ) {
|
189
|
+
module.debug('Hiding dimmer', $dimmer);
|
190
|
+
module.animate.hide(callback);
|
191
|
+
settings.onHide.call(element);
|
192
|
+
settings.onChange.call(element);
|
193
|
+
}
|
194
|
+
else {
|
195
|
+
module.debug('Dimmer is not visible');
|
196
|
+
}
|
197
|
+
},
|
198
|
+
|
199
|
+
toggle: function() {
|
200
|
+
module.verbose('Toggling dimmer visibility', $dimmer);
|
201
|
+
if( !module.is.dimmed() ) {
|
202
|
+
module.show();
|
203
|
+
}
|
204
|
+
else {
|
205
|
+
module.hide();
|
206
|
+
}
|
207
|
+
},
|
208
|
+
|
209
|
+
animate: {
|
210
|
+
show: function(callback) {
|
211
|
+
callback = $.isFunction(callback)
|
212
|
+
? callback
|
213
|
+
: function(){}
|
214
|
+
;
|
215
|
+
if(settings.useCSS && $.fn.transition !== undefined && $dimmer.transition('is supported')) {
|
216
|
+
$dimmer
|
217
|
+
.transition({
|
218
|
+
animation : settings.transition + ' in',
|
219
|
+
queue : false,
|
220
|
+
duration : module.get.duration(),
|
221
|
+
onStart : function() {
|
222
|
+
module.set.dimmed();
|
223
|
+
},
|
224
|
+
onComplete : function() {
|
225
|
+
module.set.active();
|
226
|
+
callback();
|
227
|
+
}
|
228
|
+
})
|
229
|
+
;
|
230
|
+
}
|
231
|
+
else {
|
232
|
+
module.verbose('Showing dimmer animation with javascript');
|
233
|
+
module.set.dimmed();
|
234
|
+
$dimmer
|
235
|
+
.stop()
|
236
|
+
.css({
|
237
|
+
opacity : 0,
|
238
|
+
width : '100%',
|
239
|
+
height : '100%'
|
240
|
+
})
|
241
|
+
.fadeTo(module.get.duration(), 1, function() {
|
242
|
+
$dimmer.removeAttr('style');
|
243
|
+
module.set.active();
|
244
|
+
callback();
|
245
|
+
})
|
246
|
+
;
|
247
|
+
}
|
248
|
+
},
|
249
|
+
hide: function(callback) {
|
250
|
+
callback = $.isFunction(callback)
|
251
|
+
? callback
|
252
|
+
: function(){}
|
253
|
+
;
|
254
|
+
if(settings.useCSS && $.fn.transition !== undefined && $dimmer.transition('is supported')) {
|
255
|
+
module.verbose('Hiding dimmer with css');
|
256
|
+
$dimmer
|
257
|
+
.transition({
|
258
|
+
animation : settings.transition + ' out',
|
259
|
+
queue : false,
|
260
|
+
duration : module.get.duration(),
|
261
|
+
onStart : function() {
|
262
|
+
module.remove.dimmed();
|
263
|
+
},
|
264
|
+
onComplete : function() {
|
265
|
+
module.remove.active();
|
266
|
+
callback();
|
267
|
+
}
|
268
|
+
})
|
269
|
+
;
|
270
|
+
}
|
271
|
+
else {
|
272
|
+
module.verbose('Hiding dimmer with javascript');
|
273
|
+
module.remove.dimmed();
|
274
|
+
$dimmer
|
275
|
+
.stop()
|
276
|
+
.fadeOut(module.get.duration(), function() {
|
277
|
+
module.remove.active();
|
278
|
+
$dimmer.removeAttr('style');
|
279
|
+
callback();
|
280
|
+
})
|
281
|
+
;
|
282
|
+
}
|
283
|
+
}
|
284
|
+
},
|
285
|
+
|
286
|
+
get: {
|
287
|
+
dimmer: function() {
|
288
|
+
return $dimmer;
|
289
|
+
},
|
290
|
+
duration: function() {
|
291
|
+
if(typeof settings.duration == 'object') {
|
292
|
+
if( module.is.active() ) {
|
293
|
+
return settings.duration.hide;
|
294
|
+
}
|
295
|
+
else {
|
296
|
+
return settings.duration.show;
|
297
|
+
}
|
298
|
+
}
|
299
|
+
return settings.duration;
|
300
|
+
}
|
301
|
+
},
|
302
|
+
|
303
|
+
has: {
|
304
|
+
dimmer: function() {
|
305
|
+
if(settings.dimmerName) {
|
306
|
+
return ($module.children(selector.dimmer).filter('.' + settings.dimmerName).length > 0);
|
307
|
+
}
|
308
|
+
else {
|
309
|
+
return ( $module.children(selector.dimmer).length > 0 );
|
310
|
+
}
|
311
|
+
}
|
312
|
+
},
|
313
|
+
|
314
|
+
is: {
|
315
|
+
active: function() {
|
316
|
+
return $dimmer.hasClass(className.active);
|
317
|
+
},
|
318
|
+
animating: function() {
|
319
|
+
return ( $dimmer.is(':animated') || $dimmer.hasClass(className.animating) );
|
320
|
+
},
|
321
|
+
closable: function() {
|
322
|
+
if(settings.closable == 'auto') {
|
323
|
+
if(settings.on == 'hover') {
|
324
|
+
return false;
|
325
|
+
}
|
326
|
+
return true;
|
327
|
+
}
|
328
|
+
return settings.closable;
|
329
|
+
},
|
330
|
+
dimmer: function() {
|
331
|
+
return $module.is(selector.dimmer);
|
332
|
+
},
|
333
|
+
dimmable: function() {
|
334
|
+
return $module.is(selector.dimmable);
|
335
|
+
},
|
336
|
+
dimmed: function() {
|
337
|
+
return $dimmable.hasClass(className.dimmed);
|
338
|
+
},
|
339
|
+
disabled: function() {
|
340
|
+
return $dimmable.hasClass(className.disabled);
|
341
|
+
},
|
342
|
+
enabled: function() {
|
343
|
+
return !module.is.disabled();
|
344
|
+
},
|
345
|
+
page: function () {
|
346
|
+
return $dimmable.is('body');
|
347
|
+
},
|
348
|
+
pageDimmer: function() {
|
349
|
+
return $dimmer.hasClass(className.pageDimmer);
|
350
|
+
}
|
351
|
+
},
|
352
|
+
|
353
|
+
can: {
|
354
|
+
show: function() {
|
355
|
+
return !$dimmer.hasClass(className.disabled);
|
356
|
+
}
|
357
|
+
},
|
358
|
+
|
359
|
+
set: {
|
360
|
+
active: function() {
|
361
|
+
$dimmer.addClass(className.active);
|
362
|
+
},
|
363
|
+
dimmable: function() {
|
364
|
+
$dimmable.addClass(className.dimmable);
|
365
|
+
},
|
366
|
+
dimmed: function() {
|
367
|
+
$dimmable.addClass(className.dimmed);
|
368
|
+
},
|
369
|
+
pageDimmer: function() {
|
370
|
+
$dimmer.addClass(className.pageDimmer);
|
371
|
+
},
|
372
|
+
disabled: function() {
|
373
|
+
$dimmer.addClass(className.disabled);
|
374
|
+
}
|
375
|
+
},
|
376
|
+
|
377
|
+
remove: {
|
378
|
+
active: function() {
|
379
|
+
$dimmer
|
380
|
+
.removeClass(className.active)
|
381
|
+
;
|
382
|
+
},
|
383
|
+
dimmed: function() {
|
384
|
+
$dimmable.removeClass(className.dimmed);
|
385
|
+
},
|
386
|
+
disabled: function() {
|
387
|
+
$dimmer.removeClass(className.disabled);
|
388
|
+
}
|
389
|
+
},
|
390
|
+
|
391
|
+
setting: function(name, value) {
|
392
|
+
module.debug('Changing setting', name, value);
|
393
|
+
if( $.isPlainObject(name) ) {
|
394
|
+
$.extend(true, settings, name);
|
395
|
+
}
|
396
|
+
else if(value !== undefined) {
|
397
|
+
settings[name] = value;
|
398
|
+
}
|
399
|
+
else {
|
400
|
+
return settings[name];
|
401
|
+
}
|
402
|
+
},
|
403
|
+
internal: function(name, value) {
|
404
|
+
if( $.isPlainObject(name) ) {
|
405
|
+
$.extend(true, module, name);
|
406
|
+
}
|
407
|
+
else if(value !== undefined) {
|
408
|
+
module[name] = value;
|
409
|
+
}
|
410
|
+
else {
|
411
|
+
return module[name];
|
412
|
+
}
|
413
|
+
},
|
414
|
+
debug: function() {
|
415
|
+
if(settings.debug) {
|
416
|
+
if(settings.performance) {
|
417
|
+
module.performance.log(arguments);
|
418
|
+
}
|
419
|
+
else {
|
420
|
+
module.debug = Function.prototype.bind.call(console.info, console, settings.name + ':');
|
421
|
+
module.debug.apply(console, arguments);
|
422
|
+
}
|
423
|
+
}
|
424
|
+
},
|
425
|
+
verbose: function() {
|
426
|
+
if(settings.verbose && settings.debug) {
|
427
|
+
if(settings.performance) {
|
428
|
+
module.performance.log(arguments);
|
429
|
+
}
|
430
|
+
else {
|
431
|
+
module.verbose = Function.prototype.bind.call(console.info, console, settings.name + ':');
|
432
|
+
module.verbose.apply(console, arguments);
|
433
|
+
}
|
434
|
+
}
|
435
|
+
},
|
436
|
+
error: function() {
|
437
|
+
module.error = Function.prototype.bind.call(console.error, console, settings.name + ':');
|
438
|
+
module.error.apply(console, arguments);
|
439
|
+
},
|
440
|
+
performance: {
|
441
|
+
log: function(message) {
|
442
|
+
var
|
443
|
+
currentTime,
|
444
|
+
executionTime,
|
445
|
+
previousTime
|
446
|
+
;
|
447
|
+
if(settings.performance) {
|
448
|
+
currentTime = new Date().getTime();
|
449
|
+
previousTime = time || currentTime;
|
450
|
+
executionTime = currentTime - previousTime;
|
451
|
+
time = currentTime;
|
452
|
+
performance.push({
|
453
|
+
'Name' : message[0],
|
454
|
+
'Arguments' : [].slice.call(message, 1) || '',
|
455
|
+
'Element' : element,
|
456
|
+
'Execution Time' : executionTime
|
457
|
+
});
|
458
|
+
}
|
459
|
+
clearTimeout(module.performance.timer);
|
460
|
+
module.performance.timer = setTimeout(module.performance.display, 100);
|
461
|
+
},
|
462
|
+
display: function() {
|
463
|
+
var
|
464
|
+
title = settings.name + ':',
|
465
|
+
totalTime = 0
|
466
|
+
;
|
467
|
+
time = false;
|
468
|
+
clearTimeout(module.performance.timer);
|
469
|
+
$.each(performance, function(index, data) {
|
470
|
+
totalTime += data['Execution Time'];
|
471
|
+
});
|
472
|
+
title += ' ' + totalTime + 'ms';
|
473
|
+
if(moduleSelector) {
|
474
|
+
title += ' \'' + moduleSelector + '\'';
|
475
|
+
}
|
476
|
+
if($allModules.length > 1) {
|
477
|
+
title += ' ' + '(' + $allModules.length + ')';
|
478
|
+
}
|
479
|
+
if( (console.group !== undefined || console.table !== undefined) && performance.length > 0) {
|
480
|
+
console.groupCollapsed(title);
|
481
|
+
if(console.table) {
|
482
|
+
console.table(performance);
|
483
|
+
}
|
484
|
+
else {
|
485
|
+
$.each(performance, function(index, data) {
|
486
|
+
console.log(data['Name'] + ': ' + data['Execution Time']+'ms');
|
487
|
+
});
|
488
|
+
}
|
489
|
+
console.groupEnd();
|
490
|
+
}
|
491
|
+
performance = [];
|
492
|
+
}
|
493
|
+
},
|
494
|
+
invoke: function(query, passedArguments, context) {
|
495
|
+
var
|
496
|
+
object = instance,
|
497
|
+
maxDepth,
|
498
|
+
found,
|
499
|
+
response
|
500
|
+
;
|
501
|
+
passedArguments = passedArguments || queryArguments;
|
502
|
+
context = element || context;
|
503
|
+
if(typeof query == 'string' && object !== undefined) {
|
504
|
+
query = query.split(/[\. ]/);
|
505
|
+
maxDepth = query.length - 1;
|
506
|
+
$.each(query, function(depth, value) {
|
507
|
+
var camelCaseValue = (depth != maxDepth)
|
508
|
+
? value + query[depth + 1].charAt(0).toUpperCase() + query[depth + 1].slice(1)
|
509
|
+
: query
|
510
|
+
;
|
511
|
+
if( $.isPlainObject( object[camelCaseValue] ) && (depth != maxDepth) ) {
|
512
|
+
object = object[camelCaseValue];
|
513
|
+
}
|
514
|
+
else if( object[camelCaseValue] !== undefined ) {
|
515
|
+
found = object[camelCaseValue];
|
516
|
+
return false;
|
517
|
+
}
|
518
|
+
else if( $.isPlainObject( object[value] ) && (depth != maxDepth) ) {
|
519
|
+
object = object[value];
|
520
|
+
}
|
521
|
+
else if( object[value] !== undefined ) {
|
522
|
+
found = object[value];
|
523
|
+
return false;
|
524
|
+
}
|
525
|
+
else {
|
526
|
+
module.error(error.method, query);
|
527
|
+
return false;
|
528
|
+
}
|
529
|
+
});
|
530
|
+
}
|
531
|
+
if ( $.isFunction( found ) ) {
|
532
|
+
response = found.apply(context, passedArguments);
|
533
|
+
}
|
534
|
+
else if(found !== undefined) {
|
535
|
+
response = found;
|
536
|
+
}
|
537
|
+
if($.isArray(returnedValue)) {
|
538
|
+
returnedValue.push(response);
|
539
|
+
}
|
540
|
+
else if(returnedValue !== undefined) {
|
541
|
+
returnedValue = [returnedValue, response];
|
542
|
+
}
|
543
|
+
else if(response !== undefined) {
|
544
|
+
returnedValue = response;
|
545
|
+
}
|
546
|
+
return found;
|
547
|
+
}
|
548
|
+
};
|
549
|
+
|
550
|
+
module.preinitialize();
|
551
|
+
|
552
|
+
if(methodInvoked) {
|
553
|
+
if(instance === undefined) {
|
554
|
+
module.initialize();
|
555
|
+
}
|
556
|
+
module.invoke(query);
|
557
|
+
}
|
558
|
+
else {
|
559
|
+
if(instance !== undefined) {
|
560
|
+
module.destroy();
|
561
|
+
}
|
562
|
+
module.initialize();
|
563
|
+
}
|
564
|
+
})
|
565
|
+
;
|
566
|
+
|
567
|
+
return (returnedValue !== undefined)
|
568
|
+
? returnedValue
|
569
|
+
: this
|
570
|
+
;
|
571
|
+
};
|
572
|
+
|
573
|
+
$.fn.dimmer.settings = {
|
574
|
+
|
575
|
+
name : 'Dimmer',
|
576
|
+
namespace : 'dimmer',
|
577
|
+
|
578
|
+
debug : false,
|
579
|
+
verbose : true,
|
580
|
+
performance : true,
|
581
|
+
|
582
|
+
dimmerName : false,
|
583
|
+
variation : false,
|
584
|
+
closable : 'auto',
|
585
|
+
transition : 'fade',
|
586
|
+
useCSS : true,
|
587
|
+
on : false,
|
588
|
+
|
589
|
+
duration : {
|
590
|
+
show : 500,
|
591
|
+
hide : 500
|
592
|
+
},
|
593
|
+
|
594
|
+
onChange : function(){},
|
595
|
+
onShow : function(){},
|
596
|
+
onHide : function(){},
|
597
|
+
|
598
|
+
error : {
|
599
|
+
method : 'The method you called is not defined.'
|
600
|
+
},
|
601
|
+
|
602
|
+
selector: {
|
603
|
+
dimmable : '.dimmable',
|
604
|
+
dimmer : '.ui.dimmer',
|
605
|
+
content : '.ui.dimmer > .content, .ui.dimmer > .content > .center'
|
606
|
+
},
|
607
|
+
|
608
|
+
template: {
|
609
|
+
dimmer: function() {
|
610
|
+
return $('<div />').attr('class', 'ui dimmer');
|
611
|
+
}
|
612
|
+
},
|
613
|
+
|
614
|
+
className : {
|
615
|
+
active : 'active',
|
616
|
+
animating : 'animating',
|
617
|
+
dimmable : 'dimmable',
|
618
|
+
dimmed : 'dimmed',
|
619
|
+
disabled : 'disabled',
|
620
|
+
hide : 'hide',
|
621
|
+
pageDimmer : 'page',
|
622
|
+
show : 'show'
|
623
|
+
}
|
624
|
+
|
625
|
+
};
|
626
|
+
|
627
|
+
})( jQuery, window , document );
|