lanes 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +19 -0
- data/.jshintrc +3 -0
- data/Gemfile +9 -0
- data/Guardfile +15 -0
- data/LICENSE-MIT.txt +21 -0
- data/README.md +15 -0
- data/Rakefile +74 -0
- data/bin/lanes +5 -0
- data/client/images/ajax-loader.gif +0 -0
- data/client/images/dataTables/Sorting icons.psd +0 -0
- data/client/images/dataTables/back_disabled.png +0 -0
- data/client/images/dataTables/back_enabled.png +0 -0
- data/client/images/dataTables/back_enabled_hover.png +0 -0
- data/client/images/dataTables/favicon.ico +0 -0
- data/client/images/dataTables/forward_disabled.png +0 -0
- data/client/images/dataTables/forward_enabled.png +0 -0
- data/client/images/dataTables/forward_enabled_hover.png +0 -0
- data/client/images/dataTables/loading-background.png +0 -0
- data/client/images/dataTables/sort_asc.png +0 -0
- data/client/images/dataTables/sort_asc_disabled.png +0 -0
- data/client/images/dataTables/sort_both.png +0 -0
- data/client/images/dataTables/sort_desc.png +0 -0
- data/client/images/dataTables/sort_desc_disabled.png +0 -0
- data/client/images/logo-sm.png +0 -0
- data/client/javascripts/component/Base.coffee +39 -0
- data/client/javascripts/component/ChoicesInput.coffee +47 -0
- data/client/javascripts/component/Grid.coffee +199 -0
- data/client/javascripts/component/ModalDialog.coffee +44 -0
- data/client/javascripts/component/PopOver.coffee +52 -0
- data/client/javascripts/component/RadioGroup.coffee +59 -0
- data/client/javascripts/component/RecordFinder.coffee +143 -0
- data/client/javascripts/component/SelectField.coffee +43 -0
- data/client/javascripts/component/TaggedField.coffee +27 -0
- data/client/javascripts/component/grid/Editor.coffee +65 -0
- data/client/javascripts/component/grid/PopOverEditor.coffee +29 -0
- data/client/javascripts/component/grid/RowEditor.coffee +31 -0
- data/client/javascripts/component/grid/popover-editor.html +18 -0
- data/client/javascripts/component/grid/row-editor.html +16 -0
- data/client/javascripts/component/grid.html +4 -0
- data/client/javascripts/component/index.js +5 -0
- data/client/javascripts/component/modal.html +17 -0
- data/client/javascripts/component/popover.html +5 -0
- data/client/javascripts/component/record-finder/clause.skr +35 -0
- data/client/javascripts/component/record-finder/dialog.skr +4 -0
- data/client/javascripts/component/record-finder/field.skr +8 -0
- data/client/javascripts/data/Bootstrap.coffee +8 -0
- data/client/javascripts/data/ChangeSet.coffee +50 -0
- data/client/javascripts/data/Collection.coffee +111 -0
- data/client/javascripts/data/Config.coffee +15 -0
- data/client/javascripts/data/Model.coffee +269 -0
- data/client/javascripts/data/PubSub.coffee +68 -0
- data/client/javascripts/data/Query.coffee +184 -0
- data/client/javascripts/data/Roles.coffee +91 -0
- data/client/javascripts/data/Screens.coffee +157 -0
- data/client/javascripts/data/Sync.coffee +62 -0
- data/client/javascripts/data/User.coffee +70 -0
- data/client/javascripts/data/index.js +7 -0
- data/client/javascripts/data/mixins/HasCodeField.coffee +13 -0
- data/client/javascripts/extension/Base.coffee +9 -0
- data/client/javascripts/extension/Extensions.coffee +17 -0
- data/client/javascripts/extension/GlAccounts.coffee +9 -0
- data/client/javascripts/extension/index.js +6 -0
- data/client/javascripts/extension/load.js.erb +3 -0
- data/client/javascripts/lanes-complete.js +3 -0
- data/client/javascripts/lanes-workspace.js +1 -0
- data/client/javascripts/lib/MakeBaseClass.coffee +55 -0
- data/client/javascripts/lib/ModuleSupport.coffee +22 -0
- data/client/javascripts/lib/Templates.coffee +47 -0
- data/client/javascripts/lib/create-namespace.js +0 -0
- data/client/javascripts/lib/debounce.coffee +15 -0
- data/client/javascripts/lib/defer.coffee +7 -0
- data/client/javascripts/lib/el.js +115 -0
- data/client/javascripts/lib/index.js +9 -0
- data/client/javascripts/lib/loader.coffee +95 -0
- data/client/javascripts/lib/namespace.coffee +9 -0
- data/client/javascripts/lib/noConflict.coffee +14 -0
- data/client/javascripts/lib/promise_helpers.coffee +4 -0
- data/client/javascripts/lib/results.coffee +15 -0
- data/client/javascripts/lib/underscore.inflection.js +210 -0
- data/client/javascripts/lib/utilFunctions.coffee +51 -0
- data/client/javascripts/plugins/ResizeSensor.js +144 -0
- data/client/javascripts/plugins/index.js +4 -0
- data/client/javascripts/plugins/overlay.coffee +41 -0
- data/client/javascripts/plugins/trigger.coffee +15 -0
- data/client/javascripts/vendor/bootstrap/affix.js +142 -0
- data/client/javascripts/vendor/bootstrap/alert.js +92 -0
- data/client/javascripts/vendor/bootstrap/button.js +110 -0
- data/client/javascripts/vendor/bootstrap/carousel.js +223 -0
- data/client/javascripts/vendor/bootstrap/collapse.js +170 -0
- data/client/javascripts/vendor/bootstrap/dropdown.js +151 -0
- data/client/javascripts/vendor/bootstrap/modal.js +280 -0
- data/client/javascripts/vendor/bootstrap/popover.js +113 -0
- data/client/javascripts/vendor/bootstrap/scrollspy.js +170 -0
- data/client/javascripts/vendor/bootstrap/tab.js +128 -0
- data/client/javascripts/vendor/bootstrap/tooltip.js +457 -0
- data/client/javascripts/vendor/bootstrap/transition.js +59 -0
- data/client/javascripts/vendor/dataTables/dataTables.bootstrap.js +156 -0
- data/client/javascripts/vendor/dataTables/dataTables.scroller.js +1185 -0
- data/client/javascripts/vendor/dataTables/datatables.responsive.js +666 -0
- data/client/javascripts/vendor/dataTables/index.js +2 -0
- data/client/javascripts/vendor/dataTables/jquery.dataTables.js +14380 -0
- data/client/javascripts/vendor/jquery-2.js +9190 -0
- data/client/javascripts/vendor/jquery.tap.js +401 -0
- data/client/javascripts/vendor/magicsuggest.js +1565 -0
- data/client/javascripts/vendor/message-bus.js +285 -0
- data/client/javascripts/vendor/modern-stack.js +14 -0
- data/client/javascripts/vendor/packaged.js +13769 -0
- data/client/javascripts/view/Assets.coffee +9 -0
- data/client/javascripts/view/Base.coffee +231 -0
- data/client/javascripts/view/FormBindings.coffee +98 -0
- data/client/javascripts/view/Functions.coffee +13 -0
- data/client/javascripts/view/Helpers.coffee +77 -0
- data/client/javascripts/view/InterfaceState.coffee +88 -0
- data/client/javascripts/view/Keys.coffee +59 -0
- data/client/javascripts/view/ModelObserver.coffee +31 -0
- data/client/javascripts/view/ModelUpdate.coffee +8 -0
- data/client/javascripts/view/PubSub.coffee +29 -0
- data/client/javascripts/view/RenderContext.coffee +32 -0
- data/client/javascripts/view/SaveNotify.coffee +30 -0
- data/client/javascripts/view/Screen.coffee +30 -0
- data/client/javascripts/view/TimedHighlight.coffee +38 -0
- data/client/javascripts/view/TimedMask.coffee +65 -0
- data/client/javascripts/view/_button.html +3 -0
- data/client/javascripts/view/_toolbar.html +27 -0
- data/client/javascripts/view/index.js +10 -0
- data/client/javascripts/view/mixins/ScreenChangeListener.coffee +43 -0
- data/client/javascripts/view/model-update.html +13 -0
- data/client/javascripts/view/screen-definitions.js.erb +7 -0
- data/client/javascripts/workspace/ActiveScreensSwitcher.coffee +117 -0
- data/client/javascripts/workspace/Instance.es6 +60 -0
- data/client/javascripts/workspace/Layout.coffee +18 -0
- data/client/javascripts/workspace/LoginDialog.coffee +33 -0
- data/client/javascripts/workspace/Navbar.coffee +44 -0
- data/client/javascripts/workspace/Pages.coffee +46 -0
- data/client/javascripts/workspace/ScreensMenu.coffee +126 -0
- data/client/javascripts/workspace/index.js +12 -0
- data/client/javascripts/workspace/layout.html +4 -0
- data/client/javascripts/workspace/login-dialog.html +16 -0
- data/client/javascripts/workspace/menu.html +356 -0
- data/client/javascripts/workspace/menu_toggle.html +9 -0
- data/client/javascripts/workspace/navbar.html +19 -0
- data/client/javascripts/workspace/pages.html +6 -0
- data/client/javascripts/workspace/screens-menu.html +11 -0
- data/client/javascripts/workspace/screens-switcher.html +7 -0
- data/client/javascripts/workspace/tab.html +0 -0
- data/client/screens/user-management/UserEditScreen.coffee +21 -0
- data/client/screens/user-management/UserManagement.coffee +24 -0
- data/client/screens/user-management/grid-popover-editor.html +33 -0
- data/client/screens/user-management/index.css +4 -0
- data/client/screens/user-management/index.js +2 -0
- data/client/screens/user-management/user-management-styles.scss +7 -0
- data/client/screens/user-management/user-management.html +8 -0
- data/client/stylesheets/compoonents/all.scss +6 -0
- data/client/stylesheets/compoonents/changes-notification.scss +44 -0
- data/client/stylesheets/compoonents/grid-editors.scss +65 -0
- data/client/stylesheets/compoonents/grid.scss +301 -0
- data/client/stylesheets/compoonents/modal-dialog.scss +23 -0
- data/client/stylesheets/compoonents/record-finder.scss +71 -0
- data/client/stylesheets/compoonents/suggest.scss +266 -0
- data/client/stylesheets/fonts/icomoon.eot +0 -0
- data/client/stylesheets/fonts/icomoon.svg +160 -0
- data/client/stylesheets/fonts/icomoon.ttf +0 -0
- data/client/stylesheets/fonts/icomoon.woff +0 -0
- data/client/stylesheets/fonts/selection.json +3565 -0
- data/client/stylesheets/fonts/style.css +451 -0
- data/client/stylesheets/fonts.scss +38 -0
- data/client/stylesheets/forms.scss +75 -0
- data/client/stylesheets/index.css +4 -0
- data/client/stylesheets/keybindings.scss +6 -0
- data/client/stylesheets/lanes-workspace.scss +17 -0
- data/client/stylesheets/layout.scss +272 -0
- data/client/stylesheets/plugins/all.scss +2 -0
- data/client/stylesheets/plugins/overlay.scss +63 -0
- data/client/stylesheets/plugins/resize-sensor.scss +24 -0
- data/client/stylesheets/screens.scss +66 -0
- data/client/stylesheets/tabs.scss +148 -0
- data/client/stylesheets/vendor/bootstrap/_alerts.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_badges.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_breadcrumbs.scss +26 -0
- data/client/stylesheets/vendor/bootstrap/_button-groups.scss +240 -0
- data/client/stylesheets/vendor/bootstrap/_buttons.scss +157 -0
- data/client/stylesheets/vendor/bootstrap/_carousel.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_close.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_code.scss +68 -0
- data/client/stylesheets/vendor/bootstrap/_component-animations.scss +35 -0
- data/client/stylesheets/vendor/bootstrap/_dropdowns.scss +215 -0
- data/client/stylesheets/vendor/bootstrap/_forms.scss +538 -0
- data/client/stylesheets/vendor/bootstrap/_glyphicons.scss +237 -0
- data/client/stylesheets/vendor/bootstrap/_grid.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/_input-groups.scss +166 -0
- data/client/stylesheets/vendor/bootstrap/_jumbotron.scss +48 -0
- data/client/stylesheets/vendor/bootstrap/_labels.scss +66 -0
- data/client/stylesheets/vendor/bootstrap/_list-group.scss +132 -0
- data/client/stylesheets/vendor/bootstrap/_media.scss +56 -0
- data/client/stylesheets/vendor/bootstrap/_mixins.scss +39 -0
- data/client/stylesheets/vendor/bootstrap/_modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_navbar.scss +659 -0
- data/client/stylesheets/vendor/bootstrap/_navs.scss +242 -0
- data/client/stylesheets/vendor/bootstrap/_normalize.scss +425 -0
- data/client/stylesheets/vendor/bootstrap/_pager.scss +55 -0
- data/client/stylesheets/vendor/bootstrap/_pagination.scss +88 -0
- data/client/stylesheets/vendor/bootstrap/_panels.scss +243 -0
- data/client/stylesheets/vendor/bootstrap/_popovers.scss +133 -0
- data/client/stylesheets/vendor/bootstrap/_print.scss +101 -0
- data/client/stylesheets/vendor/bootstrap/_progress-bars.scss +105 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-embed.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/_responsive-utilities.scss +174 -0
- data/client/stylesheets/vendor/bootstrap/_scaffolding.scss +150 -0
- data/client/stylesheets/vendor/bootstrap/_tables.scss +233 -0
- data/client/stylesheets/vendor/bootstrap/_theme.scss +258 -0
- data/client/stylesheets/vendor/bootstrap/_thumbnails.scss +38 -0
- data/client/stylesheets/vendor/bootstrap/_tooltip.scss +95 -0
- data/client/stylesheets/vendor/bootstrap/_type.scss +304 -0
- data/client/stylesheets/vendor/bootstrap/_utilities.scss +57 -0
- data/client/stylesheets/vendor/bootstrap/_variables.scss +850 -0
- data/client/stylesheets/vendor/bootstrap/_wells.scss +29 -0
- data/client/stylesheets/vendor/bootstrap/bootstrap.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_alerts.scss +14 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_background-variant.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_border-radius.scss +18 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_buttons.scss +50 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_center-block.scss +7 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_clearfix.scss +22 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_forms.scss +84 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_gradients.scss +58 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid-framework.scss +81 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_grid.scss +122 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_hide-text.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_image.scss +34 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_labels.scss +12 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_list-group.scss +31 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-divider.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_nav-vertical-align.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_opacity.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_pagination.scss +23 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_panels.scss +24 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_progress-bar.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_reset-filter.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_resize.scss +6 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_responsive-visibility.scss +21 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_size.scss +10 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_tab-focus.scss +9 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_table-row.scss +28 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-emphasis.scss +11 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_text-overflow.scss +8 -0
- data/client/stylesheets/vendor/bootstrap/mixins/_vendor-prefixes.scss +219 -0
- data/client/stylesheets/vendor/bootstrap-custom-grid.scss +85 -0
- data/client/stylesheets/vendor/bootstrap-custom-modals.scss +150 -0
- data/client/stylesheets/vendor/bootstrap.scss +69 -0
- data/client/stylesheets/vendor/dataTables.scss +4 -0
- data/config/database.yml +9 -0
- data/config/puma.rb +7 -0
- data/config.ru +4 -0
- data/db/migrate/20140615031600_create_hip_users.rb +17 -0
- data/db/seed.rb +37 -0
- data/foo/Gemfile +5 -0
- data/foo/Guardfile +13 -0
- data/foo/foo/Gemfile +5 -0
- data/foo/foo/lib/foo.rb +7 -0
- data/foo/lib/foo/version.rb +3 -0
- data/foo/lib/foo.rb +8 -0
- data/lanes.gemspec +54 -0
- data/lib/generators/lanes/migrations/install_generator.rb +42 -0
- data/lib/lanes/access/locked_fields.rb +43 -0
- data/lib/lanes/access/role.rb +58 -0
- data/lib/lanes/access/role_collection.rb +75 -0
- data/lib/lanes/access/roles/administrator.rb +25 -0
- data/lib/lanes/access/roles/support.rb +13 -0
- data/lib/lanes/access/user_maint_screen.rb +32 -0
- data/lib/lanes/access.rb +50 -0
- data/lib/lanes/api/asset_pipeline.rb +59 -0
- data/lib/lanes/api/authentication_helper.rb +21 -0
- data/lib/lanes/api/authentication_provider.rb +45 -0
- data/lib/lanes/api/controller.rb +290 -0
- data/lib/lanes/api/default_routes.rb +35 -0
- data/lib/lanes/api/eco.js +516 -0
- data/lib/lanes/api/error_formatter.rb +37 -0
- data/lib/lanes/api/helper_methods.rb +32 -0
- data/lib/lanes/api/javascript_processor.rb +116 -0
- data/lib/lanes/api/pub_sub.rb +33 -0
- data/lib/lanes/api/request_wrapper.rb +42 -0
- data/lib/lanes/api/root.rb +103 -0
- data/lib/lanes/api/skr_templates.rb +60 -0
- data/lib/lanes/api/test_specs.rb +59 -0
- data/lib/lanes/api/updates.rb +38 -0
- data/lib/lanes/api.rb +27 -0
- data/lib/lanes/cli.rb +13 -0
- data/lib/lanes/concerns/all.rb +16 -0
- data/lib/lanes/concerns/api_path.rb +21 -0
- data/lib/lanes/concerns/association_extensions.rb +85 -0
- data/lib/lanes/concerns/attr_accessor_with_default.rb +62 -0
- data/lib/lanes/concerns/code_identifier.rb +43 -0
- data/lib/lanes/concerns/export_associations.rb +52 -0
- data/lib/lanes/concerns/export_join_tables.rb +39 -0
- data/lib/lanes/concerns/export_methods.rb +104 -0
- data/lib/lanes/concerns/export_scope.rb +66 -0
- data/lib/lanes/concerns/exported_limit_evaluator.rb +17 -0
- data/lib/lanes/concerns/immutable_model.rb +32 -0
- data/lib/lanes/concerns/locked_fields.rb +84 -0
- data/lib/lanes/concerns/pub_sub.rb +105 -0
- data/lib/lanes/concerns/queries.rb +20 -0
- data/lib/lanes/concerns/random_hash_code.rb +40 -0
- data/lib/lanes/concerns/sanitize_api_data.rb +15 -0
- data/lib/lanes/concerns/set_attribute_data.rb +154 -0
- data/lib/lanes/concerns/track_modifications.rb +51 -0
- data/lib/lanes/concerns/visible_id_identifier.rb +53 -0
- data/lib/lanes/configuration.rb +85 -0
- data/lib/lanes/db/migration_helpers.rb +178 -0
- data/lib/lanes/db/migrations.rb +13 -0
- data/lib/lanes/db/seed.rb +27 -0
- data/lib/lanes/db.rb +86 -0
- data/lib/lanes/environment.rb +19 -0
- data/lib/lanes/extension.rb +72 -0
- data/lib/lanes/generators/app/Gemfile +5 -0
- data/lib/lanes/generators/app/Guardfile +13 -0
- data/lib/lanes/generators/app/Rakefile +9 -0
- data/lib/lanes/generators/app/config/database.yml +9 -0
- data/lib/lanes/generators/app/config.ru +4 -0
- data/lib/lanes/generators/app/lib/main_class/version.rb +3 -0
- data/lib/lanes/generators/app/lib/main_class.rb +8 -0
- data/lib/lanes/generators/app.rb +36 -0
- data/lib/lanes/guard_tasks.rb +44 -0
- data/lib/lanes/logger.rb +37 -0
- data/lib/lanes/model.rb +26 -0
- data/lib/lanes/numbers.rb +72 -0
- data/lib/lanes/rails_engine.rb +5 -0
- data/lib/lanes/screens.rb +126 -0
- data/lib/lanes/spec_asset_expander.rb +43 -0
- data/lib/lanes/strings.rb +56 -0
- data/lib/lanes/user.rb +127 -0
- data/lib/lanes/validators/all.rb +2 -0
- data/lib/lanes/validators/email.rb +17 -0
- data/lib/lanes/validators/set.rb +18 -0
- data/lib/lanes/version.rb +5 -0
- data/lib/lanes.rb +22 -0
- data/npm-build/README +1 -0
- data/npm-build/compile.coffee +15 -0
- data/npm-build/package.json +59 -0
- data/npm-build/shims/underscore.js +1416 -0
- data/npm-build/template.js +33 -0
- data/public/javascripts/jasmine_examples/Player.js +22 -0
- data/public/javascripts/jasmine_examples/Song.js +7 -0
- data/spec/api/javascript_processor_spec.rb +107 -0
- data/spec/api/user_spec.rb +52 -0
- data/spec/client/component/ChoicesInputSpec.coffee +12 -0
- data/spec/client/component/foo_spec.coffee +4 -0
- data/spec/client/foo_spec.js +0 -0
- data/spec/client/jasmine_examples/PlayerSpec.js +0 -0
- data/spec/client/support/jasmine.yml +128 -0
- data/spec/client/support/jasmine_helper.rb +15 -0
- data/spec/concerns/api_path_spec.rb +14 -0
- data/spec/concerns/association_extensions_spec.rb +30 -0
- data/spec/concerns/attr_accessor_with_default_spec.rb +57 -0
- data/spec/concerns/code_identifier_spec.rb +45 -0
- data/spec/concerns/export_associations_spec.rb +7 -0
- data/spec/concerns/export_methods_spec.rb +43 -0
- data/spec/concerns/export_scope_spec.rb +15 -0
- data/spec/concerns/exported_limits_spec.rb +47 -0
- data/spec/concerns/pub_sub_spec.rb +83 -0
- data/spec/concerns/set_attribute_data_spec.rb +66 -0
- data/spec/configuration_spec.rb +26 -0
- data/spec/fixtures/lanes/users.yml +13 -0
- data/spec/helpers/.gitkeep +0 -0
- data/spec/helpers/SpecHelper.js +18 -0
- data/spec/locked_fields_spec.rb +27 -0
- data/spec/numbers_spec.rb +26 -0
- data/spec/role_collection_spec.rb +19 -0
- data/spec/spec_helper.rb +163 -0
- data/spec/strings_spec.rb +41 -0
- data/spec/testing_models.rb +54 -0
- data/spec/user_role_spec.rb +7 -0
- data/spec/user_spec.rb +53 -0
- data/tasks/migrations.rake +22 -0
- data/tasks/publish.rake +8 -0
- data/views/index.erb +29 -0
- data/views/specs.erb +25 -0
- data/yard_ext/all.rb +9 -0
- data/yard_ext/code_identifier_handler.rb +33 -0
- data/yard_ext/concern_meta_methods.rb +60 -0
- data/yard_ext/config_options.rb +27 -0
- data/yard_ext/exported_scope.rb +4 -0
- data/yard_ext/immutable_handler.rb +17 -0
- data/yard_ext/json_attr_accessor.rb +22 -0
- data/yard_ext/locked_fields_handler.rb +21 -0
- data/yard_ext/templates/default/layout/html/layout.erb +20 -0
- data/yard_ext/templates/default/method_details/html/github_link.erb +1 -0
- data/yard_ext/templates/default/method_details/setup.rb +3 -0
- data/yard_ext/validators.rb +1 -0
- data/yard_ext/visible_id_handler.rb +38 -0
- metadata +772 -0
@@ -0,0 +1,170 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: collapse.js v3.2.0
|
3
|
+
* http://getbootstrap.com/javascript/#collapse
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2011-2014 Twitter, Inc.
|
6
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
+
* ======================================================================== */
|
8
|
+
|
9
|
+
|
10
|
+
+function ($) {
|
11
|
+
'use strict';
|
12
|
+
|
13
|
+
// COLLAPSE PUBLIC CLASS DEFINITION
|
14
|
+
// ================================
|
15
|
+
|
16
|
+
var Collapse = function (element, options) {
|
17
|
+
this.$element = $(element)
|
18
|
+
this.options = $.extend({}, Collapse.DEFAULTS, options)
|
19
|
+
this.transitioning = null
|
20
|
+
|
21
|
+
if (this.options.parent) this.$parent = $(this.options.parent)
|
22
|
+
if (this.options.toggle) this.toggle()
|
23
|
+
}
|
24
|
+
|
25
|
+
Collapse.VERSION = '3.2.0'
|
26
|
+
|
27
|
+
Collapse.DEFAULTS = {
|
28
|
+
toggle: true
|
29
|
+
}
|
30
|
+
|
31
|
+
Collapse.prototype.dimension = function () {
|
32
|
+
var hasWidth = this.$element.hasClass('width')
|
33
|
+
return hasWidth ? 'width' : 'height'
|
34
|
+
}
|
35
|
+
|
36
|
+
Collapse.prototype.show = function () {
|
37
|
+
if (this.transitioning || this.$element.hasClass('in')) return
|
38
|
+
|
39
|
+
var startEvent = $.Event('show.bs.collapse')
|
40
|
+
this.$element.trigger(startEvent)
|
41
|
+
if (startEvent.isDefaultPrevented()) return
|
42
|
+
|
43
|
+
var actives = this.$parent && this.$parent.find('> .panel > .in')
|
44
|
+
|
45
|
+
if (actives && actives.length) {
|
46
|
+
var hasData = actives.data('bs.collapse')
|
47
|
+
if (hasData && hasData.transitioning) return
|
48
|
+
Plugin.call(actives, 'hide')
|
49
|
+
hasData || actives.data('bs.collapse', null)
|
50
|
+
}
|
51
|
+
|
52
|
+
var dimension = this.dimension()
|
53
|
+
|
54
|
+
this.$element
|
55
|
+
.removeClass('collapse')
|
56
|
+
.addClass('collapsing')[dimension](0)
|
57
|
+
|
58
|
+
this.transitioning = 1
|
59
|
+
|
60
|
+
var complete = function () {
|
61
|
+
this.$element
|
62
|
+
.removeClass('collapsing')
|
63
|
+
.addClass('collapse in')[dimension]('')
|
64
|
+
this.transitioning = 0
|
65
|
+
this.$element
|
66
|
+
.trigger('shown.bs.collapse')
|
67
|
+
}
|
68
|
+
|
69
|
+
if (!$.support.transition) return complete.call(this)
|
70
|
+
|
71
|
+
var scrollSize = $.camelCase(['scroll', dimension].join('-'))
|
72
|
+
|
73
|
+
this.$element
|
74
|
+
.one('bsTransitionEnd', $.proxy(complete, this))
|
75
|
+
.emulateTransitionEnd(350)[dimension](this.$element[0][scrollSize])
|
76
|
+
}
|
77
|
+
|
78
|
+
Collapse.prototype.hide = function () {
|
79
|
+
if (this.transitioning || !this.$element.hasClass('in')) return
|
80
|
+
|
81
|
+
var startEvent = $.Event('hide.bs.collapse')
|
82
|
+
this.$element.trigger(startEvent)
|
83
|
+
if (startEvent.isDefaultPrevented()) return
|
84
|
+
|
85
|
+
var dimension = this.dimension()
|
86
|
+
|
87
|
+
this.$element[dimension](this.$element[dimension]())[0].offsetHeight
|
88
|
+
|
89
|
+
this.$element
|
90
|
+
.addClass('collapsing')
|
91
|
+
.removeClass('collapse')
|
92
|
+
.removeClass('in')
|
93
|
+
|
94
|
+
this.transitioning = 1
|
95
|
+
|
96
|
+
var complete = function () {
|
97
|
+
this.transitioning = 0
|
98
|
+
this.$element
|
99
|
+
.trigger('hidden.bs.collapse')
|
100
|
+
.removeClass('collapsing')
|
101
|
+
.addClass('collapse')
|
102
|
+
}
|
103
|
+
|
104
|
+
if (!$.support.transition) return complete.call(this)
|
105
|
+
|
106
|
+
this.$element
|
107
|
+
[dimension](0)
|
108
|
+
.one('bsTransitionEnd', $.proxy(complete, this))
|
109
|
+
.emulateTransitionEnd(350)
|
110
|
+
}
|
111
|
+
|
112
|
+
Collapse.prototype.toggle = function () {
|
113
|
+
this[this.$element.hasClass('in') ? 'hide' : 'show']()
|
114
|
+
}
|
115
|
+
|
116
|
+
|
117
|
+
// COLLAPSE PLUGIN DEFINITION
|
118
|
+
// ==========================
|
119
|
+
|
120
|
+
function Plugin(option) {
|
121
|
+
return this.each(function () {
|
122
|
+
var $this = $(this)
|
123
|
+
var data = $this.data('bs.collapse')
|
124
|
+
var options = $.extend({}, Collapse.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
125
|
+
|
126
|
+
if (!data && options.toggle && option == 'show') option = !option
|
127
|
+
if (!data) $this.data('bs.collapse', (data = new Collapse(this, options)))
|
128
|
+
if (typeof option == 'string') data[option]()
|
129
|
+
})
|
130
|
+
}
|
131
|
+
|
132
|
+
var old = $.fn.collapse
|
133
|
+
|
134
|
+
$.fn.collapse = Plugin
|
135
|
+
$.fn.collapse.Constructor = Collapse
|
136
|
+
|
137
|
+
|
138
|
+
// COLLAPSE NO CONFLICT
|
139
|
+
// ====================
|
140
|
+
|
141
|
+
$.fn.collapse.noConflict = function () {
|
142
|
+
$.fn.collapse = old
|
143
|
+
return this
|
144
|
+
}
|
145
|
+
|
146
|
+
|
147
|
+
// COLLAPSE DATA-API
|
148
|
+
// =================
|
149
|
+
|
150
|
+
$(document).on('click.bs.collapse.data-api', '[data-toggle="collapse"]', function (e) {
|
151
|
+
var href
|
152
|
+
var $this = $(this)
|
153
|
+
var target = $this.attr('data-target')
|
154
|
+
|| e.preventDefault()
|
155
|
+
|| (href = $this.attr('href')) && href.replace(/.*(?=#[^\s]+$)/, '') // strip for ie7
|
156
|
+
var $target = $(target)
|
157
|
+
var data = $target.data('bs.collapse')
|
158
|
+
var option = data ? 'toggle' : $this.data()
|
159
|
+
var parent = $this.attr('data-parent')
|
160
|
+
var $parent = parent && $(parent)
|
161
|
+
|
162
|
+
if (!data || !data.transitioning) {
|
163
|
+
if ($parent) $parent.find('[data-toggle="collapse"][data-parent="' + parent + '"]').not($this).addClass('collapsed')
|
164
|
+
$this[$target.hasClass('in') ? 'addClass' : 'removeClass']('collapsed')
|
165
|
+
}
|
166
|
+
|
167
|
+
Plugin.call($target, option)
|
168
|
+
})
|
169
|
+
|
170
|
+
}(jQuery);
|
@@ -0,0 +1,151 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: dropdown.js v3.2.0
|
3
|
+
* http://getbootstrap.com/javascript/#dropdowns
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2011-2014 Twitter, Inc.
|
6
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
+
* ======================================================================== */
|
8
|
+
|
9
|
+
|
10
|
+
+function ($) {
|
11
|
+
'use strict';
|
12
|
+
|
13
|
+
// DROPDOWN CLASS DEFINITION
|
14
|
+
// =========================
|
15
|
+
|
16
|
+
var backdrop = '.dropdown-backdrop'
|
17
|
+
var toggle = '[data-toggle="dropdown"]'
|
18
|
+
var Dropdown = function (element) {
|
19
|
+
$(element).on('click.bs.dropdown', this.toggle)
|
20
|
+
}
|
21
|
+
|
22
|
+
Dropdown.VERSION = '3.2.0'
|
23
|
+
|
24
|
+
Dropdown.prototype.toggle = function (e) {
|
25
|
+
var $this = $(this)
|
26
|
+
|
27
|
+
if ($this.is('.disabled, :disabled')) return
|
28
|
+
|
29
|
+
var $parent = getParent($this)
|
30
|
+
var isActive = $parent.hasClass('open')
|
31
|
+
|
32
|
+
clearMenus()
|
33
|
+
|
34
|
+
if (!isActive) {
|
35
|
+
if ('ontouchstart' in document.documentElement && !$parent.closest('.navbar-nav').length) {
|
36
|
+
// if mobile we use a backdrop because click events don't delegate
|
37
|
+
$('<div class="dropdown-backdrop"/>').insertAfter($(this)).on('click', clearMenus)
|
38
|
+
}
|
39
|
+
|
40
|
+
var relatedTarget = { relatedTarget: this }
|
41
|
+
$parent.trigger(e = $.Event('show.bs.dropdown', relatedTarget))
|
42
|
+
|
43
|
+
if (e.isDefaultPrevented()) return
|
44
|
+
|
45
|
+
$this.trigger('focus')
|
46
|
+
|
47
|
+
$parent
|
48
|
+
.toggleClass('open')
|
49
|
+
.trigger('shown.bs.dropdown', relatedTarget)
|
50
|
+
}
|
51
|
+
|
52
|
+
return false
|
53
|
+
}
|
54
|
+
|
55
|
+
Dropdown.prototype.keydown = function (e) {
|
56
|
+
if (!/(38|40|27)/.test(e.keyCode)) return
|
57
|
+
|
58
|
+
var $this = $(this)
|
59
|
+
|
60
|
+
e.preventDefault()
|
61
|
+
e.stopPropagation()
|
62
|
+
|
63
|
+
if ($this.is('.disabled, :disabled')) return
|
64
|
+
|
65
|
+
var $parent = getParent($this)
|
66
|
+
var isActive = $parent.hasClass('open')
|
67
|
+
|
68
|
+
if (!isActive || (isActive && e.keyCode == 27)) {
|
69
|
+
if (e.which == 27) $parent.find(toggle).trigger('focus')
|
70
|
+
return $this.trigger('click')
|
71
|
+
}
|
72
|
+
|
73
|
+
var desc = ' li:not(.divider):visible a'
|
74
|
+
var $items = $parent.find('[role="menu"]' + desc + ', [role="listbox"]' + desc)
|
75
|
+
|
76
|
+
if (!$items.length) return
|
77
|
+
|
78
|
+
var index = $items.index($items.filter(':focus'))
|
79
|
+
|
80
|
+
if (e.keyCode == 38 && index > 0) index-- // up
|
81
|
+
if (e.keyCode == 40 && index < $items.length - 1) index++ // down
|
82
|
+
if (!~index) index = 0
|
83
|
+
|
84
|
+
$items.eq(index).trigger('focus')
|
85
|
+
}
|
86
|
+
|
87
|
+
function clearMenus(e) {
|
88
|
+
if (e && e.which === 3) return
|
89
|
+
$(backdrop).remove()
|
90
|
+
$(toggle).each(function () {
|
91
|
+
var $parent = getParent($(this))
|
92
|
+
var relatedTarget = { relatedTarget: this }
|
93
|
+
if (!$parent.hasClass('open')) return
|
94
|
+
$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
|
95
|
+
if (e.isDefaultPrevented()) return
|
96
|
+
$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
|
97
|
+
})
|
98
|
+
}
|
99
|
+
|
100
|
+
function getParent($this) {
|
101
|
+
var selector = $this.attr('data-target')
|
102
|
+
|
103
|
+
if (!selector) {
|
104
|
+
selector = $this.attr('href')
|
105
|
+
selector = selector && /#[A-Za-z]/.test(selector) && selector.replace(/.*(?=#[^\s]*$)/, '') // strip for ie7
|
106
|
+
}
|
107
|
+
|
108
|
+
var $parent = selector && $(selector)
|
109
|
+
|
110
|
+
return $parent && $parent.length ? $parent : $this.parent()
|
111
|
+
}
|
112
|
+
|
113
|
+
|
114
|
+
// DROPDOWN PLUGIN DEFINITION
|
115
|
+
// ==========================
|
116
|
+
|
117
|
+
function Plugin(option) {
|
118
|
+
return this.each(function () {
|
119
|
+
var $this = $(this)
|
120
|
+
var data = $this.data('bs.dropdown')
|
121
|
+
|
122
|
+
if (!data) $this.data('bs.dropdown', (data = new Dropdown(this)))
|
123
|
+
if (typeof option == 'string') data[option].call($this)
|
124
|
+
})
|
125
|
+
}
|
126
|
+
|
127
|
+
var old = $.fn.dropdown
|
128
|
+
|
129
|
+
$.fn.dropdown = Plugin
|
130
|
+
$.fn.dropdown.Constructor = Dropdown
|
131
|
+
|
132
|
+
|
133
|
+
// DROPDOWN NO CONFLICT
|
134
|
+
// ====================
|
135
|
+
|
136
|
+
$.fn.dropdown.noConflict = function () {
|
137
|
+
$.fn.dropdown = old
|
138
|
+
return this
|
139
|
+
}
|
140
|
+
|
141
|
+
|
142
|
+
// APPLY TO STANDARD DROPDOWN ELEMENTS
|
143
|
+
// ===================================
|
144
|
+
|
145
|
+
$(document)
|
146
|
+
.on('click.bs.dropdown.data-api', clearMenus)
|
147
|
+
.on('click.bs.dropdown.data-api', '.dropdown form', function (e) { e.stopPropagation() })
|
148
|
+
.on('click.bs.dropdown.data-api', toggle, Dropdown.prototype.toggle)
|
149
|
+
.on('keydown.bs.dropdown.data-api', toggle + ', [role="menu"], [role="listbox"]', Dropdown.prototype.keydown)
|
150
|
+
|
151
|
+
}(jQuery);
|
@@ -0,0 +1,280 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: modal.js v3.2.0
|
3
|
+
* http://getbootstrap.com/javascript/#modals
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2011-2014 Twitter, Inc.
|
6
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
+
* ======================================================================== */
|
8
|
+
|
9
|
+
|
10
|
+
+function ($) {
|
11
|
+
'use strict';
|
12
|
+
|
13
|
+
// MODAL CLASS DEFINITION
|
14
|
+
// ======================
|
15
|
+
|
16
|
+
var Modal = function (element, options) {
|
17
|
+
this.options = options
|
18
|
+
this.$body = options.body || $(document.body)
|
19
|
+
this.$element = $(element)
|
20
|
+
this.$backdrop =
|
21
|
+
this.isShown = null
|
22
|
+
this.scrollbarWidth = 0
|
23
|
+
|
24
|
+
if (this.options.remote) {
|
25
|
+
this.$element
|
26
|
+
.find('.modal-content')
|
27
|
+
.load(this.options.remote, $.proxy(function () {
|
28
|
+
this.$element.trigger('loaded.bs.modal')
|
29
|
+
}, this))
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
Modal.VERSION = '3.2.0'
|
34
|
+
|
35
|
+
Modal.DEFAULTS = {
|
36
|
+
backdrop: true,
|
37
|
+
keyboard: true,
|
38
|
+
show: true
|
39
|
+
}
|
40
|
+
|
41
|
+
Modal.prototype.toggle = function (_relatedTarget) {
|
42
|
+
return this.isShown ? this.hide() : this.show(_relatedTarget)
|
43
|
+
}
|
44
|
+
|
45
|
+
Modal.prototype.show = function (_relatedTarget) {
|
46
|
+
var that = this
|
47
|
+
var e = $.Event('show.bs.modal', { relatedTarget: _relatedTarget })
|
48
|
+
|
49
|
+
this.$element.trigger(e)
|
50
|
+
|
51
|
+
if (this.isShown || e.isDefaultPrevented()) return
|
52
|
+
|
53
|
+
this.isShown = true
|
54
|
+
|
55
|
+
this.checkScrollbar()
|
56
|
+
this.$body.addClass('modal-open')
|
57
|
+
|
58
|
+
this.setScrollbar()
|
59
|
+
this.escape()
|
60
|
+
|
61
|
+
this.$element.on('click.dismiss.bs.modal', '[data-dismiss="modal"]', $.proxy(this.hide, this))
|
62
|
+
|
63
|
+
this.backdrop(function () {
|
64
|
+
var transition = $.support.transition && that.$element.hasClass('fade')
|
65
|
+
|
66
|
+
if (!that.$element.parent().length) {
|
67
|
+
that.$element.appendTo(that.$body) // don't move modals dom position
|
68
|
+
}
|
69
|
+
|
70
|
+
that.$element
|
71
|
+
.show()
|
72
|
+
.scrollTop(0)
|
73
|
+
|
74
|
+
if (transition) {
|
75
|
+
that.$element[0].offsetWidth // force reflow
|
76
|
+
}
|
77
|
+
|
78
|
+
that.$element
|
79
|
+
.addClass('in')
|
80
|
+
.attr('aria-hidden', false)
|
81
|
+
|
82
|
+
that.enforceFocus()
|
83
|
+
|
84
|
+
var e = $.Event('shown.bs.modal', { relatedTarget: _relatedTarget })
|
85
|
+
|
86
|
+
transition ?
|
87
|
+
that.$element.find('.modal-dialog') // wait for modal to slide in
|
88
|
+
.one('bsTransitionEnd', function () {
|
89
|
+
that.$element.trigger('focus').trigger(e)
|
90
|
+
})
|
91
|
+
.emulateTransitionEnd(300) :
|
92
|
+
that.$element.trigger('focus').trigger(e)
|
93
|
+
})
|
94
|
+
}
|
95
|
+
|
96
|
+
Modal.prototype.hide = function (e) {
|
97
|
+
if (e) e.preventDefault()
|
98
|
+
|
99
|
+
e = $.Event('hide.bs.modal')
|
100
|
+
|
101
|
+
this.$element.trigger(e)
|
102
|
+
|
103
|
+
if (!this.isShown || e.isDefaultPrevented()) return
|
104
|
+
|
105
|
+
this.isShown = false
|
106
|
+
|
107
|
+
this.$body.removeClass('modal-open')
|
108
|
+
|
109
|
+
this.resetScrollbar()
|
110
|
+
this.escape()
|
111
|
+
|
112
|
+
$(document).off('focusin.bs.modal')
|
113
|
+
|
114
|
+
this.$element
|
115
|
+
.removeClass('in')
|
116
|
+
.attr('aria-hidden', true)
|
117
|
+
.off('click.dismiss.bs.modal')
|
118
|
+
|
119
|
+
$.support.transition && this.$element.hasClass('fade') ?
|
120
|
+
this.$element
|
121
|
+
.one('bsTransitionEnd', $.proxy(this.hideModal, this))
|
122
|
+
.emulateTransitionEnd(300) :
|
123
|
+
this.hideModal()
|
124
|
+
}
|
125
|
+
|
126
|
+
Modal.prototype.enforceFocus = function () {
|
127
|
+
$(document)
|
128
|
+
.off('focusin.bs.modal') // guard against infinite focus loop
|
129
|
+
.on('focusin.bs.modal', $.proxy(function (e) {
|
130
|
+
if (this.$element[0] !== e.target && !this.$element.has(e.target).length) {
|
131
|
+
this.$element.trigger('focus')
|
132
|
+
}
|
133
|
+
}, this))
|
134
|
+
}
|
135
|
+
|
136
|
+
Modal.prototype.escape = function () {
|
137
|
+
if (this.isShown && this.options.keyboard) {
|
138
|
+
this.$element.on('keyup.dismiss.bs.modal', $.proxy(function (e) {
|
139
|
+
e.which == 27 && this.hide()
|
140
|
+
}, this))
|
141
|
+
} else if (!this.isShown) {
|
142
|
+
this.$element.off('keyup.dismiss.bs.modal')
|
143
|
+
}
|
144
|
+
}
|
145
|
+
|
146
|
+
Modal.prototype.hideModal = function () {
|
147
|
+
var that = this
|
148
|
+
this.$element.hide()
|
149
|
+
this.backdrop(function () {
|
150
|
+
that.$element.trigger('hidden.bs.modal')
|
151
|
+
})
|
152
|
+
}
|
153
|
+
|
154
|
+
Modal.prototype.removeBackdrop = function () {
|
155
|
+
this.$backdrop && this.$backdrop.remove()
|
156
|
+
this.$backdrop = null
|
157
|
+
}
|
158
|
+
|
159
|
+
Modal.prototype.backdrop = function (callback) {
|
160
|
+
var that = this
|
161
|
+
var animate = this.$element.hasClass('fade') ? 'fade' : ''
|
162
|
+
|
163
|
+
if (this.isShown && this.options.backdrop) {
|
164
|
+
var doAnimate = $.support.transition && animate
|
165
|
+
|
166
|
+
this.$backdrop = $('<div class="modal-backdrop ' + animate + '" />')
|
167
|
+
.appendTo(this.$body)
|
168
|
+
|
169
|
+
this.$element.on('click.dismiss.bs.modal', $.proxy(function (e) {
|
170
|
+
if (e.target !== e.currentTarget) return
|
171
|
+
this.options.backdrop == 'static'
|
172
|
+
? this.$element[0].focus.call(this.$element[0])
|
173
|
+
: this.hide.call(this)
|
174
|
+
}, this))
|
175
|
+
|
176
|
+
if (doAnimate) this.$backdrop[0].offsetWidth // force reflow
|
177
|
+
|
178
|
+
this.$backdrop.addClass('in')
|
179
|
+
|
180
|
+
if (!callback) return
|
181
|
+
|
182
|
+
doAnimate ?
|
183
|
+
this.$backdrop
|
184
|
+
.one('bsTransitionEnd', callback)
|
185
|
+
.emulateTransitionEnd(150) :
|
186
|
+
callback()
|
187
|
+
|
188
|
+
} else if (!this.isShown && this.$backdrop) {
|
189
|
+
this.$backdrop.removeClass('in')
|
190
|
+
|
191
|
+
var callbackRemove = function () {
|
192
|
+
that.removeBackdrop()
|
193
|
+
callback && callback()
|
194
|
+
}
|
195
|
+
$.support.transition && this.$element.hasClass('fade') ?
|
196
|
+
this.$backdrop
|
197
|
+
.one('bsTransitionEnd', callbackRemove)
|
198
|
+
.emulateTransitionEnd(150) :
|
199
|
+
callbackRemove()
|
200
|
+
|
201
|
+
} else if (callback) {
|
202
|
+
callback()
|
203
|
+
}
|
204
|
+
}
|
205
|
+
|
206
|
+
Modal.prototype.checkScrollbar = function () {
|
207
|
+
if (document.body.clientWidth >= window.innerWidth) return
|
208
|
+
this.scrollbarWidth = this.scrollbarWidth || this.measureScrollbar()
|
209
|
+
}
|
210
|
+
|
211
|
+
Modal.prototype.setScrollbar = function () {
|
212
|
+
var bodyPad = parseInt((this.$body.css('padding-right') || 0), 10)
|
213
|
+
if (this.scrollbarWidth) this.$body.css('padding-right', bodyPad + this.scrollbarWidth)
|
214
|
+
}
|
215
|
+
|
216
|
+
Modal.prototype.resetScrollbar = function () {
|
217
|
+
this.$body.css('padding-right', '')
|
218
|
+
}
|
219
|
+
|
220
|
+
Modal.prototype.measureScrollbar = function () { // thx walsh
|
221
|
+
var scrollDiv = document.createElement('div')
|
222
|
+
scrollDiv.className = 'modal-scrollbar-measure'
|
223
|
+
this.$body.append(scrollDiv)
|
224
|
+
var scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth
|
225
|
+
this.$body[0].removeChild(scrollDiv)
|
226
|
+
return scrollbarWidth
|
227
|
+
}
|
228
|
+
|
229
|
+
|
230
|
+
// MODAL PLUGIN DEFINITION
|
231
|
+
// =======================
|
232
|
+
|
233
|
+
function Plugin(option, _relatedTarget) {
|
234
|
+
return this.each(function () {
|
235
|
+
var $this = $(this)
|
236
|
+
var data = $this.data('bs.modal')
|
237
|
+
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option == 'object' && option)
|
238
|
+
|
239
|
+
if (!data) $this.data('bs.modal', (data = new Modal(this, options)))
|
240
|
+
if (typeof option == 'string') data[option](_relatedTarget)
|
241
|
+
else if (options.show) data.show(_relatedTarget)
|
242
|
+
})
|
243
|
+
}
|
244
|
+
|
245
|
+
var old = $.fn.modal
|
246
|
+
|
247
|
+
$.fn.modal = Plugin
|
248
|
+
$.fn.modal.Constructor = Modal
|
249
|
+
|
250
|
+
|
251
|
+
// MODAL NO CONFLICT
|
252
|
+
// =================
|
253
|
+
|
254
|
+
$.fn.modal.noConflict = function () {
|
255
|
+
$.fn.modal = old
|
256
|
+
return this
|
257
|
+
}
|
258
|
+
|
259
|
+
|
260
|
+
// MODAL DATA-API
|
261
|
+
// ==============
|
262
|
+
|
263
|
+
$(document).on('click.bs.modal.data-api', '[data-toggle="modal"]', function (e) {
|
264
|
+
var $this = $(this)
|
265
|
+
var href = $this.attr('href')
|
266
|
+
var $target = $($this.attr('data-target') || (href && href.replace(/.*(?=#[^\s]+$)/, ''))) // strip for ie7
|
267
|
+
var option = $target.data('bs.modal') ? 'toggle' : $.extend({ remote: !/#/.test(href) && href }, $target.data(), $this.data())
|
268
|
+
|
269
|
+
if ($this.is('a')) e.preventDefault()
|
270
|
+
|
271
|
+
$target.one('show.bs.modal', function (showEvent) {
|
272
|
+
if (showEvent.isDefaultPrevented()) return // only register focus restorer if modal will actually get shown
|
273
|
+
$target.one('hidden.bs.modal', function () {
|
274
|
+
$this.is(':visible') && $this.trigger('focus')
|
275
|
+
})
|
276
|
+
})
|
277
|
+
Plugin.call($target, option, this)
|
278
|
+
})
|
279
|
+
|
280
|
+
}(jQuery);
|
@@ -0,0 +1,113 @@
|
|
1
|
+
/* ========================================================================
|
2
|
+
* Bootstrap: popover.js v3.2.0
|
3
|
+
* http://getbootstrap.com/javascript/#popovers
|
4
|
+
* ========================================================================
|
5
|
+
* Copyright 2011-2014 Twitter, Inc.
|
6
|
+
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
|
7
|
+
* ======================================================================== */
|
8
|
+
|
9
|
+
|
10
|
+
+function ($) {
|
11
|
+
'use strict';
|
12
|
+
|
13
|
+
// POPOVER PUBLIC CLASS DEFINITION
|
14
|
+
// ===============================
|
15
|
+
|
16
|
+
var Popover = function (element, options) {
|
17
|
+
this.init('popover', element, options)
|
18
|
+
}
|
19
|
+
|
20
|
+
if (!$.fn.tooltip) throw new Error('Popover requires tooltip.js')
|
21
|
+
|
22
|
+
Popover.VERSION = '3.2.0'
|
23
|
+
|
24
|
+
Popover.DEFAULTS = $.extend({}, $.fn.tooltip.Constructor.DEFAULTS, {
|
25
|
+
placement: 'right',
|
26
|
+
trigger: 'click',
|
27
|
+
content: '',
|
28
|
+
template: '<div class="popover" role="tooltip"><div class="arrow"></div><h3 class="popover-title"></h3><div class="popover-content"></div></div>'
|
29
|
+
})
|
30
|
+
|
31
|
+
|
32
|
+
// NOTE: POPOVER EXTENDS tooltip.js
|
33
|
+
// ================================
|
34
|
+
|
35
|
+
Popover.prototype = $.extend({}, $.fn.tooltip.Constructor.prototype)
|
36
|
+
|
37
|
+
Popover.prototype.constructor = Popover
|
38
|
+
|
39
|
+
Popover.prototype.getDefaults = function () {
|
40
|
+
return Popover.DEFAULTS
|
41
|
+
}
|
42
|
+
|
43
|
+
Popover.prototype.setContent = function () {
|
44
|
+
var $tip = this.tip()
|
45
|
+
var title = this.getTitle()
|
46
|
+
var content = this.getContent()
|
47
|
+
|
48
|
+
$tip.find('.popover-title')[this.options.html ? 'html' : 'text'](title)
|
49
|
+
$tip.find('.popover-content').empty()[ // we use append for html objects to maintain js events
|
50
|
+
this.options.html ? (typeof content == 'string' ? 'html' : 'append') : 'text'
|
51
|
+
](content)
|
52
|
+
|
53
|
+
$tip.removeClass('fade top bottom left right in')
|
54
|
+
|
55
|
+
// IE8 doesn't accept hiding via the `:empty` pseudo selector, we have to do
|
56
|
+
// this manually by checking the contents.
|
57
|
+
if (!$tip.find('.popover-title').html()) $tip.find('.popover-title').hide()
|
58
|
+
}
|
59
|
+
|
60
|
+
Popover.prototype.hasContent = function () {
|
61
|
+
return this.getTitle() || this.getContent()
|
62
|
+
}
|
63
|
+
|
64
|
+
Popover.prototype.getContent = function () {
|
65
|
+
var $e = this.$element
|
66
|
+
var o = this.options
|
67
|
+
|
68
|
+
return $e.attr('data-content')
|
69
|
+
|| (typeof o.content == 'function' ?
|
70
|
+
o.content.call($e[0]) :
|
71
|
+
o.content)
|
72
|
+
}
|
73
|
+
|
74
|
+
Popover.prototype.arrow = function () {
|
75
|
+
return (this.$arrow = this.$arrow || this.tip().find('.arrow'))
|
76
|
+
}
|
77
|
+
|
78
|
+
Popover.prototype.tip = function () {
|
79
|
+
if (!this.$tip) this.$tip = $(this.options.template)
|
80
|
+
return this.$tip
|
81
|
+
}
|
82
|
+
|
83
|
+
|
84
|
+
// POPOVER PLUGIN DEFINITION
|
85
|
+
// =========================
|
86
|
+
|
87
|
+
function Plugin(option) {
|
88
|
+
return this.each(function () {
|
89
|
+
var $this = $(this)
|
90
|
+
var data = $this.data('bs.popover')
|
91
|
+
var options = typeof option == 'object' && option
|
92
|
+
|
93
|
+
if (!data && option == 'destroy') return
|
94
|
+
if (!data) $this.data('bs.popover', (data = new Popover(this, options)))
|
95
|
+
if (typeof option == 'string') data[option]()
|
96
|
+
})
|
97
|
+
}
|
98
|
+
|
99
|
+
var old = $.fn.popover
|
100
|
+
|
101
|
+
$.fn.popover = Plugin
|
102
|
+
$.fn.popover.Constructor = Popover
|
103
|
+
|
104
|
+
|
105
|
+
// POPOVER NO CONFLICT
|
106
|
+
// ===================
|
107
|
+
|
108
|
+
$.fn.popover.noConflict = function () {
|
109
|
+
$.fn.popover = old
|
110
|
+
return this
|
111
|
+
}
|
112
|
+
|
113
|
+
}(jQuery);
|