spree_backend 2.0.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/app/assets/images/admin/bg/spree_50.png +0 -0
- data/app/assets/images/admin/payment_banner.png +0 -0
- data/app/assets/images/admin/progress.gif +0 -0
- data/app/assets/javascripts/admin/address_states.js +27 -0
- data/app/assets/javascripts/admin/admin.js.erb +283 -0
- data/app/assets/javascripts/admin/calculator.js +16 -0
- data/app/assets/javascripts/admin/checkouts/edit.js +94 -0
- data/app/assets/javascripts/admin/gateway.js +13 -0
- data/app/assets/javascripts/admin/image_settings.js.erb +62 -0
- data/app/assets/javascripts/admin/images/index.js.coffee +15 -0
- data/app/assets/javascripts/admin/images/new.js.coffee +7 -0
- data/app/assets/javascripts/admin/nested-attribute.js +23 -0
- data/app/assets/javascripts/admin/option_type_autocomplete.js.erb +35 -0
- data/app/assets/javascripts/admin/orders/edit.js +17 -0
- data/app/assets/javascripts/admin/orders/edit_form.js +16 -0
- data/app/assets/javascripts/admin/payments/new.js +16 -0
- data/app/assets/javascripts/admin/product_picker.js +37 -0
- data/app/assets/javascripts/admin/progress.coffee +27 -0
- data/app/assets/javascripts/admin/promotions.js +98 -0
- data/app/assets/javascripts/admin/shipments.js.erb +66 -0
- data/app/assets/javascripts/admin/spree-select2.js.erb +22 -0
- data/app/assets/javascripts/admin/spree_backend.js +19 -0
- data/app/assets/javascripts/admin/states.js +9 -0
- data/app/assets/javascripts/admin/stock_management.js.coffee +9 -0
- data/app/assets/javascripts/admin/stock_transfer.js.coffee +181 -0
- data/app/assets/javascripts/admin/taxon_autocomplete.js.erb +32 -0
- data/app/assets/javascripts/admin/taxon_tree_menu.js.coffee +22 -0
- data/app/assets/javascripts/admin/taxonomy.js.coffee +127 -0
- data/app/assets/javascripts/admin/underscore-min.js +1227 -0
- data/app/assets/javascripts/admin/user_picker.js +31 -0
- data/app/assets/javascripts/admin/variant_autocomplete.js.erb +180 -0
- data/app/assets/javascripts/admin/zone.js.coffee +39 -0
- data/app/assets/javascripts/store/backend.js +1 -0
- data/app/assets/stylesheets/admin/components/_actions.scss +31 -0
- data/app/assets/stylesheets/admin/components/_date-picker.scss +154 -0
- data/app/assets/stylesheets/admin/components/_messages.scss +43 -0
- data/app/assets/stylesheets/admin/components/_navigation.scss +150 -0
- data/app/assets/stylesheets/admin/components/_pagination.scss +17 -0
- data/app/assets/stylesheets/admin/components/_product_autocomplete.scss +29 -0
- data/app/assets/stylesheets/admin/components/_progress.scss +35 -0
- data/app/assets/stylesheets/admin/components/_sidebar.scss +24 -0
- data/app/assets/stylesheets/admin/components/_states.scss +34 -0
- data/app/assets/stylesheets/admin/components/_table-filter.scss +14 -0
- data/app/assets/stylesheets/admin/globals/_functions.scss +25 -0
- data/app/assets/stylesheets/admin/globals/_mixins.scss +25 -0
- data/app/assets/stylesheets/admin/globals/_variables.scss +142 -0
- data/app/assets/stylesheets/admin/globals/_variables_override.scss +7 -0
- data/app/assets/stylesheets/admin/hacks/_ie.scss +73 -0
- data/app/assets/stylesheets/admin/hacks/_mozilla.scss +32 -0
- data/app/assets/stylesheets/admin/hacks/_opera.scss +17 -0
- data/app/assets/stylesheets/admin/plugins/_jstree.scss +132 -0
- data/app/assets/stylesheets/admin/plugins/_powertip.scss +86 -0
- data/app/assets/stylesheets/admin/plugins/_select2.scss +176 -0
- data/app/assets/stylesheets/admin/plugins/_token-input.scss +110 -0
- data/app/assets/stylesheets/admin/plugins/font-awesome.scss +303 -0
- data/app/assets/stylesheets/admin/sections/_bulk_transfer.scss +8 -0
- data/app/assets/stylesheets/admin/sections/_edit_checkouts.scss +72 -0
- data/app/assets/stylesheets/admin/sections/_image_settings.scss +3 -0
- data/app/assets/stylesheets/admin/sections/_orders.scss +54 -0
- data/app/assets/stylesheets/admin/sections/_overview.scss +86 -0
- data/app/assets/stylesheets/admin/sections/_products.scss +113 -0
- data/app/assets/stylesheets/admin/sections/_promotions.scss +100 -0
- data/app/assets/stylesheets/admin/shared/_forms.scss +262 -0
- data/app/assets/stylesheets/admin/shared/_icons.scss +22 -0
- data/app/assets/stylesheets/admin/shared/_layout.scss +91 -0
- data/app/assets/stylesheets/admin/shared/_tables.scss +198 -0
- data/app/assets/stylesheets/admin/shared/_typography.scss +132 -0
- data/app/assets/stylesheets/admin/spree_admin.scss +39 -0
- data/app/assets/stylesheets/admin/spree_backend.css +16 -0
- data/app/assets/stylesheets/store/backend.css +1 -0
- data/app/controllers/spree/admin/adjustments_controller.rb +30 -0
- data/app/controllers/spree/admin/banners_controller.rb +14 -0
- data/app/controllers/spree/admin/base_controller.rb +92 -0
- data/app/controllers/spree/admin/countries_controller.rb +11 -0
- data/app/controllers/spree/admin/general_settings_controller.rb +34 -0
- data/app/controllers/spree/admin/image_settings_controller.rb +66 -0
- data/app/controllers/spree/admin/images_controller.rb +35 -0
- data/app/controllers/spree/admin/inventory_units_controller.rb +6 -0
- data/app/controllers/spree/admin/line_items_controller.rb +49 -0
- data/app/controllers/spree/admin/mail_methods_controller.rb +38 -0
- data/app/controllers/spree/admin/option_types_controller.rb +46 -0
- data/app/controllers/spree/admin/option_values_controller.rb +11 -0
- data/app/controllers/spree/admin/orders/customer_details_controller.rb +40 -0
- data/app/controllers/spree/admin/orders_controller.rb +133 -0
- data/app/controllers/spree/admin/overview_controller.rb +13 -0
- data/app/controllers/spree/admin/payment_methods_controller.rb +65 -0
- data/app/controllers/spree/admin/payments_controller.rb +111 -0
- data/app/controllers/spree/admin/product_properties_controller.rb +18 -0
- data/app/controllers/spree/admin/products_controller.rb +115 -0
- data/app/controllers/spree/admin/promotion_actions_controller.rb +45 -0
- data/app/controllers/spree/admin/promotion_rules_controller.rb +50 -0
- data/app/controllers/spree/admin/promotions_controller.rb +23 -0
- data/app/controllers/spree/admin/properties_controller.rb +12 -0
- data/app/controllers/spree/admin/prototypes_controller.rb +27 -0
- data/app/controllers/spree/admin/reports_controller.rb +55 -0
- data/app/controllers/spree/admin/resource_controller.rb +261 -0
- data/app/controllers/spree/admin/return_authorizations_controller.rb +21 -0
- data/app/controllers/spree/admin/search_controller.rb +27 -0
- data/app/controllers/spree/admin/shipping_categories_controller.rb +6 -0
- data/app/controllers/spree/admin/shipping_methods_controller.rb +45 -0
- data/app/controllers/spree/admin/states_controller.rb +29 -0
- data/app/controllers/spree/admin/stock_items_controller.rb +24 -0
- data/app/controllers/spree/admin/stock_locations_controller.rb +7 -0
- data/app/controllers/spree/admin/stock_movements_controller.rb +60 -0
- data/app/controllers/spree/admin/stock_transfers_controller.rb +53 -0
- data/app/controllers/spree/admin/tax_categories_controller.rb +19 -0
- data/app/controllers/spree/admin/tax_rates_controller.rb +26 -0
- data/app/controllers/spree/admin/tax_settings_controller.rb +17 -0
- data/app/controllers/spree/admin/taxonomies_controller.rb +21 -0
- data/app/controllers/spree/admin/taxons_controller.rb +112 -0
- data/app/controllers/spree/admin/trackers_controller.rb +6 -0
- data/app/controllers/spree/admin/variants_controller.rb +44 -0
- data/app/controllers/spree/admin/zones_controller.rb +26 -0
- data/app/helpers/spree/admin/base_helper.rb +168 -0
- data/app/helpers/spree/admin/general_settings_helper.rb +13 -0
- data/app/helpers/spree/admin/inventory_settings_helper.rb +9 -0
- data/app/helpers/spree/admin/navigation_helper.rb +154 -0
- data/app/helpers/spree/admin/orders_helper.rb +19 -0
- data/app/helpers/spree/admin/payments_helper.rb +11 -0
- data/app/helpers/spree/admin/products_helper.rb +27 -0
- data/app/helpers/spree/admin/stock_movements_helper.rb +13 -0
- data/app/helpers/spree/admin/tables_helper.rb +15 -0
- data/app/helpers/spree/admin/taxons_helper.rb +9 -0
- data/app/helpers/spree/promotion_rules_helper.rb +13 -0
- data/app/models/spree/backend_configuration.rb +5 -0
- data/app/views/spree/admin/adjustments/_adjustments_table.html.erb +36 -0
- data/app/views/spree/admin/adjustments/_form.html.erb +16 -0
- data/app/views/spree/admin/adjustments/edit.html.erb +22 -0
- data/app/views/spree/admin/adjustments/index.html.erb +14 -0
- data/app/views/spree/admin/adjustments/new.html.erb +23 -0
- data/app/views/spree/admin/banners/_gateway.html.erb +16 -0
- data/app/views/spree/admin/countries/_form.html.erb +22 -0
- data/app/views/spree/admin/countries/edit.html.erb +21 -0
- data/app/views/spree/admin/countries/index.html.erb +34 -0
- data/app/views/spree/admin/general_settings/edit.html.erb +92 -0
- data/app/views/spree/admin/image_settings/edit.html.erb +126 -0
- data/app/views/spree/admin/images/_form.html.erb +18 -0
- data/app/views/spree/admin/images/edit.html.erb +28 -0
- data/app/views/spree/admin/images/index.html.erb +58 -0
- data/app/views/spree/admin/images/new.html.erb +15 -0
- data/app/views/spree/admin/inventory_units/adjust.html.erb +31 -0
- data/app/views/spree/admin/line_items/create.js.erb +1 -0
- data/app/views/spree/admin/line_items/destroy.js.erb +1 -0
- data/app/views/spree/admin/mail_methods/_form.html.erb +80 -0
- data/app/views/spree/admin/mail_methods/edit.html.erb +21 -0
- data/app/views/spree/admin/option_types/_form.html.erb +17 -0
- data/app/views/spree/admin/option_types/_option_value_fields.html.erb +9 -0
- data/app/views/spree/admin/option_types/edit.html.erb +50 -0
- data/app/views/spree/admin/option_types/index.html.erb +40 -0
- data/app/views/spree/admin/option_types/new.html.erb +11 -0
- data/app/views/spree/admin/option_types/new.js.erb +2 -0
- data/app/views/spree/admin/orders/_add_product.html.erb +15 -0
- data/app/views/spree/admin/orders/_form.html.erb +45 -0
- data/app/views/spree/admin/orders/_line_item.html.erb +9 -0
- data/app/views/spree/admin/orders/_shipment.html.erb +148 -0
- data/app/views/spree/admin/orders/customer_details/_form.html.erb +66 -0
- data/app/views/spree/admin/orders/customer_details/edit.html.erb +27 -0
- data/app/views/spree/admin/orders/edit.html.erb +30 -0
- data/app/views/spree/admin/orders/index.html.erb +134 -0
- data/app/views/spree/admin/payment_methods/_form.html.erb +57 -0
- data/app/views/spree/admin/payment_methods/edit.html.erb +23 -0
- data/app/views/spree/admin/payment_methods/index.html.erb +52 -0
- data/app/views/spree/admin/payment_methods/new.html.erb +22 -0
- data/app/views/spree/admin/payments/_bill_address_form.html.erb +9 -0
- data/app/views/spree/admin/payments/_form.html.erb +28 -0
- data/app/views/spree/admin/payments/_list.html.erb +26 -0
- data/app/views/spree/admin/payments/credit.html.erb +18 -0
- data/app/views/spree/admin/payments/index.html.erb +24 -0
- data/app/views/spree/admin/payments/new.html.erb +26 -0
- data/app/views/spree/admin/payments/show.html.erb +18 -0
- data/app/views/spree/admin/payments/source_forms/_check.html.erb +0 -0
- data/app/views/spree/admin/payments/source_forms/_gateway.html.erb +50 -0
- data/app/views/spree/admin/payments/source_views/_check.html.erb +0 -0
- data/app/views/spree/admin/payments/source_views/_gateway.html.erb +29 -0
- data/app/views/spree/admin/product_properties/_product_property_fields.html.erb +17 -0
- data/app/views/spree/admin/product_properties/index.html.erb +59 -0
- data/app/views/spree/admin/products/_add_stock_form.html.erb +6 -0
- data/app/views/spree/admin/products/_form.html.erb +128 -0
- data/app/views/spree/admin/products/_properties_form.erb +10 -0
- data/app/views/spree/admin/products/edit.html.erb +18 -0
- data/app/views/spree/admin/products/index.html.erb +102 -0
- data/app/views/spree/admin/products/new.html.erb +81 -0
- data/app/views/spree/admin/products/new.js.erb +7 -0
- data/app/views/spree/admin/products/stock.html.erb +79 -0
- data/app/views/spree/admin/promotion_actions/create.js.erb +13 -0
- data/app/views/spree/admin/promotion_actions/destroy.js.erb +1 -0
- data/app/views/spree/admin/promotion_rules/create.js.erb +7 -0
- data/app/views/spree/admin/promotion_rules/destroy.js.erb +3 -0
- data/app/views/spree/admin/promotions/_actions.html.erb +32 -0
- data/app/views/spree/admin/promotions/_form.html.erb +56 -0
- data/app/views/spree/admin/promotions/_promotion_action.html.erb +11 -0
- data/app/views/spree/admin/promotions/_promotion_rule.html.erb +9 -0
- data/app/views/spree/admin/promotions/_rules.html.erb +45 -0
- data/app/views/spree/admin/promotions/_tab.html.erb +1 -0
- data/app/views/spree/admin/promotions/actions/_create_adjustment.html.erb +26 -0
- data/app/views/spree/admin/promotions/actions/_create_line_items.html.erb +22 -0
- data/app/views/spree/admin/promotions/edit.html.erb +28 -0
- data/app/views/spree/admin/promotions/index.html.erb +52 -0
- data/app/views/spree/admin/promotions/new.html.erb +16 -0
- data/app/views/spree/admin/promotions/rules/_first_order.html.erb +0 -0
- data/app/views/spree/admin/promotions/rules/_item_total.html.erb +6 -0
- data/app/views/spree/admin/promotions/rules/_landing_page.html.erb +5 -0
- data/app/views/spree/admin/promotions/rules/_product.html.erb +9 -0
- data/app/views/spree/admin/promotions/rules/_user.html.erb +4 -0
- data/app/views/spree/admin/promotions/rules/_user_logged_in.html.erb +0 -0
- data/app/views/spree/admin/properties/_form.html.erb +16 -0
- data/app/views/spree/admin/properties/edit.html.erb +18 -0
- data/app/views/spree/admin/properties/filtered.html.erb +1 -0
- data/app/views/spree/admin/properties/index.html.erb +41 -0
- data/app/views/spree/admin/properties/new.html.erb +13 -0
- data/app/views/spree/admin/properties/new.js.erb +2 -0
- data/app/views/spree/admin/prototypes/_form.html.erb +25 -0
- data/app/views/spree/admin/prototypes/_prototypes.html.erb +25 -0
- data/app/views/spree/admin/prototypes/available.js.erb +2 -0
- data/app/views/spree/admin/prototypes/edit.html.erb +20 -0
- data/app/views/spree/admin/prototypes/index.html.erb +40 -0
- data/app/views/spree/admin/prototypes/new.html.erb +11 -0
- data/app/views/spree/admin/prototypes/new.js.erb +5 -0
- data/app/views/spree/admin/prototypes/select.js.erb +4 -0
- data/app/views/spree/admin/prototypes/show.html.erb +42 -0
- data/app/views/spree/admin/reports/index.html.erb +21 -0
- data/app/views/spree/admin/reports/sales_total.html.erb +37 -0
- data/app/views/spree/admin/return_authorizations/_form.html.erb +78 -0
- data/app/views/spree/admin/return_authorizations/edit.html.erb +32 -0
- data/app/views/spree/admin/return_authorizations/index.html.erb +52 -0
- data/app/views/spree/admin/return_authorizations/new.html.erb +22 -0
- data/app/views/spree/admin/search/users.rabl +30 -0
- data/app/views/spree/admin/shared/_address.html.erb +6 -0
- data/app/views/spree/admin/shared/_address_form.html.erb +72 -0
- data/app/views/spree/admin/shared/_alert.html.erb +5 -0
- data/app/views/spree/admin/shared/_calculator_fields.html.erb +22 -0
- data/app/views/spree/admin/shared/_configuration_menu.html.erb +30 -0
- data/app/views/spree/admin/shared/_destroy.js.erb +16 -0
- data/app/views/spree/admin/shared/_edit_resource_links.html.erb +5 -0
- data/app/views/spree/admin/shared/_head.html.erb +25 -0
- data/app/views/spree/admin/shared/_new_resource_links.html.erb +5 -0
- data/app/views/spree/admin/shared/_order_details.html.erb +56 -0
- data/app/views/spree/admin/shared/_order_tabs.html.erb +75 -0
- data/app/views/spree/admin/shared/_product_sub_menu.html.erb +8 -0
- data/app/views/spree/admin/shared/_product_tabs.html.erb +30 -0
- data/app/views/spree/admin/shared/_report_criteria.html.erb +17 -0
- data/app/views/spree/admin/shared/_routes.html.erb +8 -0
- data/app/views/spree/admin/shared/_show_resource_links.html.erb +5 -0
- data/app/views/spree/admin/shared/_stock_movement_form.html.erb +30 -0
- data/app/views/spree/admin/shared/_tabs.html.erb +14 -0
- data/app/views/spree/admin/shared/_translations.html.erb +32 -0
- data/app/views/spree/admin/shared/_update_order_state.js +7 -0
- data/app/views/spree/admin/shipping_categories/_form.html.erb +6 -0
- data/app/views/spree/admin/shipping_categories/edit.html.erb +20 -0
- data/app/views/spree/admin/shipping_categories/index.html.erb +35 -0
- data/app/views/spree/admin/shipping_categories/new.html.erb +20 -0
- data/app/views/spree/admin/shipping_methods/_form.html.erb +58 -0
- data/app/views/spree/admin/shipping_methods/edit.html.erb +29 -0
- data/app/views/spree/admin/shipping_methods/index.html.erb +48 -0
- data/app/views/spree/admin/shipping_methods/new.html.erb +29 -0
- data/app/views/spree/admin/states/_form.html.erb +14 -0
- data/app/views/spree/admin/states/_state_list.html.erb +31 -0
- data/app/views/spree/admin/states/edit.html.erb +20 -0
- data/app/views/spree/admin/states/index.html.erb +24 -0
- data/app/views/spree/admin/states/new.html.erb +15 -0
- data/app/views/spree/admin/states/new.js.erb +2 -0
- data/app/views/spree/admin/stock_locations/_form.html.erb +87 -0
- data/app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb +39 -0
- data/app/views/spree/admin/stock_locations/edit.html.erb +17 -0
- data/app/views/spree/admin/stock_locations/index.html.erb +49 -0
- data/app/views/spree/admin/stock_locations/new.html.erb +16 -0
- data/app/views/spree/admin/stock_movements/_form.html.erb +13 -0
- data/app/views/spree/admin/stock_movements/edit.html.erb +16 -0
- data/app/views/spree/admin/stock_movements/index.html.erb +43 -0
- data/app/views/spree/admin/stock_movements/new.html.erb +16 -0
- data/app/views/spree/admin/stock_transfers/_stock_movements.html.erb +27 -0
- data/app/views/spree/admin/stock_transfers/index.html.erb +94 -0
- data/app/views/spree/admin/stock_transfers/new.html.erb +108 -0
- data/app/views/spree/admin/stock_transfers/show.html.erb +48 -0
- data/app/views/spree/admin/tax_categories/_form.html.erb +24 -0
- data/app/views/spree/admin/tax_categories/edit.html.erb +18 -0
- data/app/views/spree/admin/tax_categories/index.html.erb +48 -0
- data/app/views/spree/admin/tax_categories/new.html.erb +19 -0
- data/app/views/spree/admin/tax_categories/show.html.erb +1 -0
- data/app/views/spree/admin/tax_rates/_form.html.erb +42 -0
- data/app/views/spree/admin/tax_rates/edit.html.erb +21 -0
- data/app/views/spree/admin/tax_rates/index.html.erb +59 -0
- data/app/views/spree/admin/tax_rates/new.html.erb +25 -0
- data/app/views/spree/admin/tax_settings/edit.html.erb +18 -0
- data/app/views/spree/admin/taxonomies/_form.html.erb +7 -0
- data/app/views/spree/admin/taxonomies/_js_head.html.erb +13 -0
- data/app/views/spree/admin/taxonomies/_list.html.erb +26 -0
- data/app/views/spree/admin/taxonomies/_taxon.html.erb +12 -0
- data/app/views/spree/admin/taxonomies/edit.erb +42 -0
- data/app/views/spree/admin/taxonomies/index.html.erb +15 -0
- data/app/views/spree/admin/taxonomies/new.html.erb +22 -0
- data/app/views/spree/admin/taxons/_form.html.erb +44 -0
- data/app/views/spree/admin/taxons/_taxon_table.html.erb +23 -0
- data/app/views/spree/admin/taxons/edit.html.erb +23 -0
- data/app/views/spree/admin/taxons/search.rabl +5 -0
- data/app/views/spree/admin/trackers/_form.html.erb +34 -0
- data/app/views/spree/admin/trackers/edit.html.erb +20 -0
- data/app/views/spree/admin/trackers/index.html.erb +48 -0
- data/app/views/spree/admin/trackers/new.html.erb +20 -0
- data/app/views/spree/admin/variants/_autocomplete.js.erb +67 -0
- data/app/views/spree/admin/variants/_form.html.erb +37 -0
- data/app/views/spree/admin/variants/edit.html.erb +15 -0
- data/app/views/spree/admin/variants/index.html.erb +74 -0
- data/app/views/spree/admin/variants/new.html.erb +9 -0
- data/app/views/spree/admin/variants/new.js.erb +3 -0
- data/app/views/spree/admin/zones/_country_member.html.erb +5 -0
- data/app/views/spree/admin/zones/_form.html.erb +34 -0
- data/app/views/spree/admin/zones/_member_type.html.erb +19 -0
- data/app/views/spree/admin/zones/_state_member.html.erb +5 -0
- data/app/views/spree/admin/zones/edit.html.erb +23 -0
- data/app/views/spree/admin/zones/index.html.erb +53 -0
- data/app/views/spree/admin/zones/new.html.erb +21 -0
- data/app/views/spree/layouts/admin.html.erb +135 -0
- data/app/views/spree/test_mailer/test_email.text.erb +4 -0
- data/config/initializers/form_builder.rb +15 -0
- data/config/routes.rb +159 -0
- data/lib/spree/backend.rb +21 -0
- data/lib/spree/backend/action_callbacks.rb +26 -0
- data/lib/spree/backend/engine.rb +41 -0
- data/lib/spree_backend.rb +1 -0
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.svg +255 -0
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_flat_0_aaaaaa_40x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_flat_0_eeeeee_40x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_flat_55_ffffff_40x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_flat_75_ffffff_40x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_100_f6f6f6_1x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_25_0073ea_1x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-bg_highlight-soft_50_dddddd_1x100.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_0073ea_256x240.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_454545_256x240.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_666666_256x240.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_ff0084_256x240.png +0 -0
- data/vendor/assets/images/jquery-ui/ui-icons_ffffff_256x240.png +0 -0
- data/vendor/assets/images/jquery.alerts/images/help.gif +0 -0
- data/vendor/assets/images/jquery.alerts/images/important.gif +0 -0
- data/vendor/assets/images/jquery.alerts/images/info.gif +0 -0
- data/vendor/assets/images/jquery.alerts/images/title.gif +0 -0
- data/vendor/assets/javascripts/css_browser_selector_dev.js +156 -0
- data/vendor/assets/javascripts/equalize.js +41 -0
- data/vendor/assets/javascripts/handlebars.js +1920 -0
- data/vendor/assets/javascripts/jquery.adaptivemenu.js +60 -0
- data/vendor/assets/javascripts/jquery.alerts/jquery.alerts.js +235 -0
- data/vendor/assets/javascripts/jquery.cookie.js +41 -0
- data/vendor/assets/javascripts/jquery.delayedobserver.js +35 -0
- data/vendor/assets/javascripts/jquery.horizontalNav.js +141 -0
- data/vendor/assets/javascripts/jquery.jstree/jquery.jstree.js +4540 -0
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/bg.jpg +0 -0
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/d.png +0 -0
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/dot_for_ie.gif +0 -0
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/style.css +61 -0
- data/vendor/assets/javascripts/jquery.jstree/themes/apple/throbber.gif +0 -0
- data/vendor/assets/javascripts/jquery.powertip.js +796 -0
- data/vendor/assets/javascripts/jquery.vAlign.js +11 -0
- data/vendor/assets/javascripts/modernizr.js +4 -0
- data/vendor/assets/javascripts/responsive-tables.js +42 -0
- data/vendor/assets/javascripts/spin.js +319 -0
- data/vendor/assets/javascripts/trunk8.js +233 -0
- data/vendor/assets/stylesheets/font-awesome-ie7.css +645 -0
- data/vendor/assets/stylesheets/font-awesome.css.erb +303 -0
- data/vendor/assets/stylesheets/jquery-ui.datepicker.css.erb +357 -0
- data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.css.erb +57 -0
- data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.spree.css +29 -0
- data/vendor/assets/stylesheets/jquery.powertip.css +85 -0
- data/vendor/assets/stylesheets/responsive-tables.css +21 -0
- metadata +509 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* jsTree apple theme 1.0
|
|
3
|
+
* Supported features: dots/no-dots, icons/no-icons, focused, loading
|
|
4
|
+
* Supported plugins: ui (hovered, clicked), checkbox, contextmenu, search
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
.jstree-apple > ul { background:url("bg.jpg") left top repeat; }
|
|
8
|
+
.jstree-apple li,
|
|
9
|
+
.jstree-apple ins { background-image:url("d.png"); background-repeat:no-repeat; background-color:transparent; }
|
|
10
|
+
.jstree-apple li { background-position:-90px 0; background-repeat:repeat-y; }
|
|
11
|
+
.jstree-apple li.jstree-last { background:transparent; }
|
|
12
|
+
.jstree-apple .jstree-open > ins { background-position:-72px 0; }
|
|
13
|
+
.jstree-apple .jstree-closed > ins { background-position:-54px 0; }
|
|
14
|
+
.jstree-apple .jstree-leaf > ins { background-position:-36px 0; }
|
|
15
|
+
|
|
16
|
+
.jstree-apple a { border-radius:4px; -moz-border-radius:4px; -webkit-border-radius:4px; text-shadow:1px 1px 1px white; }
|
|
17
|
+
.jstree-apple .jstree-hovered { background:#e7f4f9; border:1px solid #d8f0fa; padding:0 3px 0 1px; text-shadow:1px 1px 1px silver; }
|
|
18
|
+
.jstree-apple .jstree-clicked { background:#beebff; border:1px solid #99defd; padding:0 3px 0 1px; }
|
|
19
|
+
.jstree-apple a .jstree-icon { background-position:-56px -20px; }
|
|
20
|
+
.jstree-apple a.jstree-loading .jstree-icon { background:url("throbber.gif") center center no-repeat !important; }
|
|
21
|
+
|
|
22
|
+
.jstree-apple.jstree-focused { background:white; }
|
|
23
|
+
|
|
24
|
+
.jstree-apple .jstree-no-dots li,
|
|
25
|
+
.jstree-apple .jstree-no-dots .jstree-leaf > ins { background:transparent; }
|
|
26
|
+
.jstree-apple .jstree-no-dots .jstree-open > ins { background-position:-18px 0; }
|
|
27
|
+
.jstree-apple .jstree-no-dots .jstree-closed > ins { background-position:0 0; }
|
|
28
|
+
|
|
29
|
+
.jstree-apple .jstree-no-icons a .jstree-icon { display:none; }
|
|
30
|
+
|
|
31
|
+
.jstree-apple .jstree-search { font-style:italic; }
|
|
32
|
+
|
|
33
|
+
.jstree-apple .jstree-no-icons .jstree-checkbox { display:inline-block; }
|
|
34
|
+
.jstree-apple .jstree-no-checkboxes .jstree-checkbox { display:none !important; }
|
|
35
|
+
.jstree-apple .jstree-checked > a > .jstree-checkbox { background-position:-38px -19px; }
|
|
36
|
+
.jstree-apple .jstree-unchecked > a > .jstree-checkbox { background-position:-2px -19px; }
|
|
37
|
+
.jstree-apple .jstree-undetermined > a > .jstree-checkbox { background-position:-20px -19px; }
|
|
38
|
+
.jstree-apple .jstree-checked > a > .checkbox:hover { background-position:-38px -37px; }
|
|
39
|
+
.jstree-apple .jstree-unchecked > a > .jstree-checkbox:hover { background-position:-2px -37px; }
|
|
40
|
+
.jstree-apple .jstree-undetermined > a > .jstree-checkbox:hover { background-position:-20px -37px; }
|
|
41
|
+
|
|
42
|
+
#vakata-dragged.jstree-apple ins { background:transparent !important; }
|
|
43
|
+
/*#vakata-dragged.jstree-apple .jstree-ok { background:url("d.png") -2px -53px no-repeat !important; }*/
|
|
44
|
+
/*#vakata-dragged.jstree-apple .jstree-invalid { background:url("d.png") -18px -53px no-repeat !important; }*/
|
|
45
|
+
/*#jstree-marker.jstree-apple { background:url("d.png") -41px -57px no-repeat !important; text-indent:-100px; }*/
|
|
46
|
+
|
|
47
|
+
.jstree-apple a.jstree-search { color:aqua; }
|
|
48
|
+
.jstree-apple .jstree-locked a { color:silver; cursor:default; }
|
|
49
|
+
|
|
50
|
+
#vakata-contextmenu.jstree-apple-context,
|
|
51
|
+
#vakata-contextmenu.jstree-apple-context li ul { background:#f0f0f0; border:1px solid #979797; -moz-box-shadow: 1px 1px 2px #999; -webkit-box-shadow: 1px 1px 2px #999; box-shadow: 1px 1px 2px #999; }
|
|
52
|
+
#vakata-contextmenu.jstree-apple-context li { }
|
|
53
|
+
#vakata-contextmenu.jstree-apple-context a { color:black; }
|
|
54
|
+
#vakata-contextmenu.jstree-apple-context a:hover,
|
|
55
|
+
#vakata-contextmenu.jstree-apple-context .vakata-hover > a { padding:0 5px; background:#e8eff7; border:1px solid #aecff7; color:black; -moz-border-radius:2px; -webkit-border-radius:2px; border-radius:2px; }
|
|
56
|
+
#vakata-contextmenu.jstree-apple-context li.jstree-contextmenu-disabled a,
|
|
57
|
+
#vakata-contextmenu.jstree-apple-context li.jstree-contextmenu-disabled a:hover { color:silver; background:transparent; border:0; padding:1px 4px; }
|
|
58
|
+
#vakata-contextmenu.jstree-apple-context li.vakata-separator { background:white; border-top:1px solid #e0e0e0; margin:0; }
|
|
59
|
+
#vakata-contextmenu.jstree-apple-context li ul { margin-left:-4px; }
|
|
60
|
+
|
|
61
|
+
/* TODO: IE6 support - the `>` selectors */
|
|
Binary file
|
|
@@ -0,0 +1,796 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* PowerTip
|
|
3
|
+
*
|
|
4
|
+
* @fileoverview jQuery plugin that creates hover tooltips.
|
|
5
|
+
* @link http://stevenbenner.github.com/jquery-powertip/
|
|
6
|
+
* @author Steven Benner (http://stevenbenner.com/)
|
|
7
|
+
* @version 1.1.0
|
|
8
|
+
* @requires jQuery 1.7+
|
|
9
|
+
*
|
|
10
|
+
* @license jQuery PowerTip Plugin v1.1.0
|
|
11
|
+
* http://stevenbenner.github.com/jquery-powertip/
|
|
12
|
+
* Copyright 2012 Steven Benner (http://stevenbenner.com/)
|
|
13
|
+
* Released under the MIT license.
|
|
14
|
+
* <https://raw.github.com/stevenbenner/jquery-powertip/master/LICENSE.txt>
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
(function($) {
|
|
18
|
+
'use strict';
|
|
19
|
+
|
|
20
|
+
// useful private variables
|
|
21
|
+
var $document = $(document),
|
|
22
|
+
$window = $(window),
|
|
23
|
+
$body = $('body');
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* Session data
|
|
27
|
+
* Private properties global to all powerTip instances
|
|
28
|
+
* @type Object
|
|
29
|
+
*/
|
|
30
|
+
var session = {
|
|
31
|
+
isPopOpen: false,
|
|
32
|
+
isFixedPopOpen: false,
|
|
33
|
+
isClosing: false,
|
|
34
|
+
popOpenImminent: false,
|
|
35
|
+
activeHover: null,
|
|
36
|
+
currentX: 0,
|
|
37
|
+
currentY: 0,
|
|
38
|
+
previousX: 0,
|
|
39
|
+
previousY: 0,
|
|
40
|
+
desyncTimeout: null,
|
|
41
|
+
mouseTrackingActive: false
|
|
42
|
+
};
|
|
43
|
+
|
|
44
|
+
/**
|
|
45
|
+
* Display hover tooltips on the matched elements.
|
|
46
|
+
* @param {Object} opts The options object to use for the plugin.
|
|
47
|
+
* @return {Object} jQuery object for the matched selectors.
|
|
48
|
+
*/
|
|
49
|
+
$.fn.powerTip = function(opts) {
|
|
50
|
+
|
|
51
|
+
// don't do any work if there were no matched elements
|
|
52
|
+
if (!this.length) {
|
|
53
|
+
return this;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// extend options
|
|
57
|
+
var options = $.extend({}, $.fn.powerTip.defaults, opts),
|
|
58
|
+
tipController = new TooltipController(options);
|
|
59
|
+
|
|
60
|
+
// hook mouse tracking
|
|
61
|
+
initMouseTracking();
|
|
62
|
+
|
|
63
|
+
// setup the elements
|
|
64
|
+
this.each(function() {
|
|
65
|
+
var $this = $(this),
|
|
66
|
+
dataPowertip = $this.data('powertip'),
|
|
67
|
+
dataElem = $this.data('powertipjq'),
|
|
68
|
+
dataTarget = $this.data('powertiptarget'),
|
|
69
|
+
title = $this.attr('title');
|
|
70
|
+
|
|
71
|
+
|
|
72
|
+
// attempt to use title attribute text if there is no data-powertip,
|
|
73
|
+
// data-powertipjq or data-powertiptarget. If we do use the title
|
|
74
|
+
// attribute, delete the attribute so the browser will not show it
|
|
75
|
+
if (!dataPowertip && !dataTarget && !dataElem && title) {
|
|
76
|
+
$this.data('powertip', title);
|
|
77
|
+
$this.removeAttr('title');
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
// create hover controllers for each element
|
|
81
|
+
$this.data(
|
|
82
|
+
'displayController',
|
|
83
|
+
new DisplayController($this, options, tipController)
|
|
84
|
+
);
|
|
85
|
+
});
|
|
86
|
+
|
|
87
|
+
// attach hover events to all matched elements
|
|
88
|
+
return this.on({
|
|
89
|
+
// mouse events
|
|
90
|
+
mouseenter: function(event) {
|
|
91
|
+
trackMouse(event);
|
|
92
|
+
session.previousX = event.pageX;
|
|
93
|
+
session.previousY = event.pageY;
|
|
94
|
+
$(this).data('displayController').show();
|
|
95
|
+
},
|
|
96
|
+
mouseleave: function() {
|
|
97
|
+
$(this).data('displayController').hide();
|
|
98
|
+
},
|
|
99
|
+
|
|
100
|
+
// keyboard events
|
|
101
|
+
focus: function() {
|
|
102
|
+
var element = $(this);
|
|
103
|
+
if (!isMouseOver(element)) {
|
|
104
|
+
element.data('displayController').show(true);
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
blur: function() {
|
|
108
|
+
$(this).data('displayController').hide(true);
|
|
109
|
+
}
|
|
110
|
+
});
|
|
111
|
+
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
/**
|
|
115
|
+
* Default options for the powerTip plugin.
|
|
116
|
+
* @type Object
|
|
117
|
+
*/
|
|
118
|
+
$.fn.powerTip.defaults = {
|
|
119
|
+
fadeInTime: 200,
|
|
120
|
+
fadeOutTime: 100,
|
|
121
|
+
followMouse: false,
|
|
122
|
+
popupId: 'powerTip',
|
|
123
|
+
intentSensitivity: 7,
|
|
124
|
+
intentPollInterval: 100,
|
|
125
|
+
closeDelay: 100,
|
|
126
|
+
placement: 'n',
|
|
127
|
+
smartPlacement: false,
|
|
128
|
+
offset: 10,
|
|
129
|
+
mouseOnToPopup: false
|
|
130
|
+
};
|
|
131
|
+
|
|
132
|
+
/**
|
|
133
|
+
* Default smart placement priority lists.
|
|
134
|
+
* The first item in the array is the highest priority, the last is the
|
|
135
|
+
* lowest. The last item is also the default, which will be used if all
|
|
136
|
+
* previous options do not fit.
|
|
137
|
+
* @type Object
|
|
138
|
+
*/
|
|
139
|
+
$.fn.powerTip.smartPlacementLists = {
|
|
140
|
+
n: ['n', 'ne', 'nw', 's'],
|
|
141
|
+
e: ['e', 'ne', 'se', 'w', 'nw', 'sw', 'n', 's', 'e'],
|
|
142
|
+
s: ['s', 'se', 'sw', 'n'],
|
|
143
|
+
w: ['w', 'nw', 'sw', 'e', 'ne', 'se', 'n', 's', 'w'],
|
|
144
|
+
nw: ['nw', 'w', 'sw', 'n', 's', 'se', 'nw'],
|
|
145
|
+
ne: ['ne', 'e', 'se', 'n', 's', 'sw', 'ne'],
|
|
146
|
+
sw: ['sw', 'w', 'nw', 's', 'n', 'ne', 'sw'],
|
|
147
|
+
se: ['se', 'e', 'ne', 's', 'n', 'nw', 'se']
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Public API
|
|
152
|
+
* @type Object
|
|
153
|
+
*/
|
|
154
|
+
$.powerTip = {
|
|
155
|
+
|
|
156
|
+
/**
|
|
157
|
+
* Attempts to show the tooltip for the specified element.
|
|
158
|
+
* @public
|
|
159
|
+
* @param {Object} element The element that the tooltip should for.
|
|
160
|
+
*/
|
|
161
|
+
showTip: function(element) {
|
|
162
|
+
// close any open tooltip
|
|
163
|
+
$.powerTip.closeTip();
|
|
164
|
+
// grab only the first matched element and ask it to show its tip
|
|
165
|
+
element = element.first();
|
|
166
|
+
if (!isMouseOver(element)) {
|
|
167
|
+
element.data('displayController').show(true, true);
|
|
168
|
+
}
|
|
169
|
+
},
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* Attempts to close any open tooltips.
|
|
173
|
+
* @public
|
|
174
|
+
*/
|
|
175
|
+
closeTip: function() {
|
|
176
|
+
$document.triggerHandler('closePowerTip');
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
/**
|
|
182
|
+
* Creates a new tooltip display controller.
|
|
183
|
+
* @private
|
|
184
|
+
* @constructor
|
|
185
|
+
* @param {Object} element The element that this controller will handle.
|
|
186
|
+
* @param {Object} options Options object containing settings.
|
|
187
|
+
* @param {TooltipController} tipController The TooltipController for this instance.
|
|
188
|
+
*/
|
|
189
|
+
function DisplayController(element, options, tipController) {
|
|
190
|
+
var hoverTimer = null;
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Begins the process of showing a tooltip.
|
|
194
|
+
* @private
|
|
195
|
+
* @param {Boolean=} immediate Skip intent testing (optional).
|
|
196
|
+
* @param {Boolean=} forceOpen Ignore cursor position and force tooltip to open (optional).
|
|
197
|
+
*/
|
|
198
|
+
function openTooltip(immediate, forceOpen) {
|
|
199
|
+
cancelTimer();
|
|
200
|
+
if (!element.data('hasActiveHover')) {
|
|
201
|
+
if (!immediate) {
|
|
202
|
+
session.popOpenImminent = true;
|
|
203
|
+
hoverTimer = setTimeout(
|
|
204
|
+
function() {
|
|
205
|
+
hoverTimer = null;
|
|
206
|
+
checkForIntent(element);
|
|
207
|
+
},
|
|
208
|
+
options.intentPollInterval
|
|
209
|
+
);
|
|
210
|
+
} else {
|
|
211
|
+
if (forceOpen) {
|
|
212
|
+
element.data('forcedOpen', true);
|
|
213
|
+
}
|
|
214
|
+
tipController.showTip(element);
|
|
215
|
+
}
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Begins the process of closing a tooltip.
|
|
221
|
+
* @private
|
|
222
|
+
* @param {Boolean=} disableDelay Disable close delay (optional).
|
|
223
|
+
*/
|
|
224
|
+
function closeTooltip(disableDelay) {
|
|
225
|
+
cancelTimer();
|
|
226
|
+
if (element.data('hasActiveHover')) {
|
|
227
|
+
session.popOpenImminent = false;
|
|
228
|
+
element.data('forcedOpen', false);
|
|
229
|
+
if (!disableDelay) {
|
|
230
|
+
hoverTimer = setTimeout(
|
|
231
|
+
function() {
|
|
232
|
+
hoverTimer = null;
|
|
233
|
+
tipController.hideTip(element);
|
|
234
|
+
},
|
|
235
|
+
options.closeDelay
|
|
236
|
+
);
|
|
237
|
+
} else {
|
|
238
|
+
tipController.hideTip(element);
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
/**
|
|
244
|
+
* Checks mouse position to make sure that the user intended to hover
|
|
245
|
+
* on the specified element before showing the tooltip.
|
|
246
|
+
* @private
|
|
247
|
+
*/
|
|
248
|
+
function checkForIntent() {
|
|
249
|
+
// calculate mouse position difference
|
|
250
|
+
var xDifference = Math.abs(session.previousX - session.currentX),
|
|
251
|
+
yDifference = Math.abs(session.previousY - session.currentY),
|
|
252
|
+
totalDifference = xDifference + yDifference;
|
|
253
|
+
|
|
254
|
+
// check if difference has passed the sensitivity threshold
|
|
255
|
+
if (totalDifference < options.intentSensitivity) {
|
|
256
|
+
tipController.showTip(element);
|
|
257
|
+
} else {
|
|
258
|
+
// try again
|
|
259
|
+
session.previousX = session.currentX;
|
|
260
|
+
session.previousY = session.currentY;
|
|
261
|
+
openTooltip();
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
/**
|
|
266
|
+
* Cancels active hover timer.
|
|
267
|
+
* @private
|
|
268
|
+
*/
|
|
269
|
+
function cancelTimer() {
|
|
270
|
+
hoverTimer = clearTimeout(hoverTimer);
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
// expose the methods
|
|
274
|
+
return {
|
|
275
|
+
show: openTooltip,
|
|
276
|
+
hide: closeTooltip,
|
|
277
|
+
cancel: cancelTimer
|
|
278
|
+
};
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/**
|
|
282
|
+
* Creates a new tooltip controller.
|
|
283
|
+
* @private
|
|
284
|
+
* @constructor
|
|
285
|
+
* @param {Object} options Options object containing settings.
|
|
286
|
+
*/
|
|
287
|
+
function TooltipController(options) {
|
|
288
|
+
|
|
289
|
+
// build and append popup div if it does not already exist
|
|
290
|
+
var tipElement = $('#' + options.popupId);
|
|
291
|
+
if (tipElement.length === 0) {
|
|
292
|
+
tipElement = $('<div></div>', { id: options.popupId });
|
|
293
|
+
// grab body element if it was not populated when the script loaded
|
|
294
|
+
// this hack exists solely for jsfiddle support
|
|
295
|
+
if ($body.length === 0) {
|
|
296
|
+
$body = $('body');
|
|
297
|
+
}
|
|
298
|
+
$body.append(tipElement);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
// hook mousemove for cursor follow tooltips
|
|
302
|
+
if (options.followMouse) {
|
|
303
|
+
// only one positionTipOnCursor hook per popup element, please
|
|
304
|
+
if (!tipElement.data('hasMouseMove')) {
|
|
305
|
+
$document.on({
|
|
306
|
+
mousemove: positionTipOnCursor,
|
|
307
|
+
scroll: positionTipOnCursor
|
|
308
|
+
});
|
|
309
|
+
}
|
|
310
|
+
tipElement.data('hasMouseMove', true);
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
// if we want to be able to mouse onto the popup then we need to attach
|
|
314
|
+
// hover events to the popup that will cancel a close request on hover
|
|
315
|
+
// and start a new close request on mouseleave
|
|
316
|
+
if (options.followMouse || options.mouseOnToPopup) {
|
|
317
|
+
tipElement.on({
|
|
318
|
+
mouseenter: function() {
|
|
319
|
+
if (tipElement.data('followMouse') || tipElement.data('mouseOnToPopup')) {
|
|
320
|
+
// check activeHover in case the mouse cursor entered
|
|
321
|
+
// the tooltip during the fadeOut and close cycle
|
|
322
|
+
if (session.activeHover) {
|
|
323
|
+
session.activeHover.data('displayController').cancel();
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
},
|
|
327
|
+
mouseleave: function() {
|
|
328
|
+
if (tipElement.data('mouseOnToPopup')) {
|
|
329
|
+
// check activeHover in case the mouse cursor entered
|
|
330
|
+
// the tooltip during the fadeOut and close cycle
|
|
331
|
+
if (session.activeHover) {
|
|
332
|
+
session.activeHover.data('displayController').hide();
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
});
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
/**
|
|
340
|
+
* Gives the specified element the active-hover state and queues up
|
|
341
|
+
* the showTip function.
|
|
342
|
+
* @private
|
|
343
|
+
* @param {Object} element The element that the tooltip should target.
|
|
344
|
+
*/
|
|
345
|
+
function beginShowTip(element) {
|
|
346
|
+
element.data('hasActiveHover', true);
|
|
347
|
+
// show popup, asap
|
|
348
|
+
tipElement.queue(function(next) {
|
|
349
|
+
showTip(element);
|
|
350
|
+
next();
|
|
351
|
+
});
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/**
|
|
355
|
+
* Shows the tooltip popup, as soon as possible.
|
|
356
|
+
* @private
|
|
357
|
+
* @param {Object} element The element that the popup should target.
|
|
358
|
+
*/
|
|
359
|
+
function showTip(element) {
|
|
360
|
+
// it is possible, especially with keyboard navigation, to move on
|
|
361
|
+
// to another element with a tooltip during the queue to get to
|
|
362
|
+
// this point in the code. if that happens then we need to not
|
|
363
|
+
// proceed or we may have the fadeout callback for the last tooltip
|
|
364
|
+
// execute immediately after this code runs, causing bugs.
|
|
365
|
+
if (!element.data('hasActiveHover')) {
|
|
366
|
+
return;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
// if the popup is open and we got asked to open another one then
|
|
370
|
+
// the old one is still in its fadeOut cycle, so wait and try again
|
|
371
|
+
if (session.isPopOpen) {
|
|
372
|
+
if (!session.isClosing) {
|
|
373
|
+
hideTip(session.activeHover);
|
|
374
|
+
}
|
|
375
|
+
tipElement.delay(100).queue(function(next) {
|
|
376
|
+
showTip(element);
|
|
377
|
+
next();
|
|
378
|
+
});
|
|
379
|
+
return;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
// trigger powerTipPreRender event
|
|
383
|
+
element.trigger('powerTipPreRender');
|
|
384
|
+
|
|
385
|
+
var tipText = element.data('powertip'),
|
|
386
|
+
tipTarget = element.data('powertiptarget'),
|
|
387
|
+
tipElem = element.data('powertipjq'),
|
|
388
|
+
tipContent = tipTarget ? $('#' + tipTarget) : [];
|
|
389
|
+
|
|
390
|
+
// set popup content
|
|
391
|
+
if (tipText) {
|
|
392
|
+
tipElement.html(tipText);
|
|
393
|
+
} else if (tipElem && tipElem.length > 0) {
|
|
394
|
+
tipElement.empty();
|
|
395
|
+
tipElem.clone(true, true).appendTo(tipElement);
|
|
396
|
+
} else if (tipContent && tipContent.length > 0) {
|
|
397
|
+
tipElement.html($('#' + tipTarget).html());
|
|
398
|
+
} else {
|
|
399
|
+
// we have no content to display, give up
|
|
400
|
+
return;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
// trigger powerTipRender event
|
|
404
|
+
element.trigger('powerTipRender');
|
|
405
|
+
|
|
406
|
+
// hook close event for triggering from the api
|
|
407
|
+
$document.on('closePowerTip', function() {
|
|
408
|
+
element.data('displayController').hide(true);
|
|
409
|
+
});
|
|
410
|
+
|
|
411
|
+
session.activeHover = element;
|
|
412
|
+
session.isPopOpen = true;
|
|
413
|
+
|
|
414
|
+
tipElement.data('followMouse', options.followMouse);
|
|
415
|
+
tipElement.data('mouseOnToPopup', options.mouseOnToPopup);
|
|
416
|
+
|
|
417
|
+
// set popup position
|
|
418
|
+
if (!options.followMouse) {
|
|
419
|
+
positionTipOnElement(element);
|
|
420
|
+
session.isFixedPopOpen = true;
|
|
421
|
+
} else {
|
|
422
|
+
positionTipOnCursor();
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
// fadein
|
|
426
|
+
tipElement.fadeIn(options.fadeInTime, function() {
|
|
427
|
+
// start desync polling
|
|
428
|
+
if (!session.desyncTimeout) {
|
|
429
|
+
session.desyncTimeout = setInterval(closeDesyncedTip, 500);
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
// trigger powerTipOpen event
|
|
433
|
+
element.trigger('powerTipOpen');
|
|
434
|
+
});
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
/**
|
|
438
|
+
* Hides the tooltip popup, immediately.
|
|
439
|
+
* @private
|
|
440
|
+
* @param {Object} element The element that the popup should target.
|
|
441
|
+
*/
|
|
442
|
+
function hideTip(element) {
|
|
443
|
+
session.isClosing = true;
|
|
444
|
+
element.data('hasActiveHover', false);
|
|
445
|
+
element.data('forcedOpen', false);
|
|
446
|
+
// reset session
|
|
447
|
+
session.activeHover = null;
|
|
448
|
+
session.isPopOpen = false;
|
|
449
|
+
// stop desync polling
|
|
450
|
+
session.desyncTimeout = clearInterval(session.desyncTimeout);
|
|
451
|
+
// unhook close event api listener
|
|
452
|
+
$document.off('closePowerTip');
|
|
453
|
+
// fade out
|
|
454
|
+
tipElement.fadeOut(options.fadeOutTime, function() {
|
|
455
|
+
session.isClosing = false;
|
|
456
|
+
session.isFixedPopOpen = false;
|
|
457
|
+
tipElement.removeClass();
|
|
458
|
+
// support mouse-follow and fixed position pops at the same
|
|
459
|
+
// time by moving the popup to the last known cursor location
|
|
460
|
+
// after it is hidden
|
|
461
|
+
setTipPosition(
|
|
462
|
+
session.currentX + options.offset,
|
|
463
|
+
session.currentY + options.offset
|
|
464
|
+
);
|
|
465
|
+
|
|
466
|
+
// trigger powerTipClose event
|
|
467
|
+
element.trigger('powerTipClose');
|
|
468
|
+
});
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
/**
|
|
472
|
+
* Checks for a tooltip desync and closes the tooltip if one occurs.
|
|
473
|
+
* @private
|
|
474
|
+
*/
|
|
475
|
+
function closeDesyncedTip() {
|
|
476
|
+
// It is possible for the mouse cursor to leave an element without
|
|
477
|
+
// firing the mouseleave event. This seems to happen (in FF) if the
|
|
478
|
+
// element is disabled under mouse cursor, the element is moved out
|
|
479
|
+
// from under the mouse cursor (such as a slideDown() occurring
|
|
480
|
+
// above it), or if the browser is resized by code moving the
|
|
481
|
+
// element from under the mouse cursor. If this happens it will
|
|
482
|
+
// result in a desynced tooltip because we wait for any exiting
|
|
483
|
+
// open tooltips to close before opening a new one. So we should
|
|
484
|
+
// periodically check for a desync situation and close the tip if
|
|
485
|
+
// such a situation arises.
|
|
486
|
+
if (session.isPopOpen && !session.isClosing) {
|
|
487
|
+
var isDesynced = false;
|
|
488
|
+
|
|
489
|
+
// case 1: user already moused onto another tip - easy test
|
|
490
|
+
if (session.activeHover.data('hasActiveHover') === false) {
|
|
491
|
+
isDesynced = true;
|
|
492
|
+
} else {
|
|
493
|
+
// case 2: hanging tip - have to test if mouse position is
|
|
494
|
+
// not over the active hover and not over a tooltip set to
|
|
495
|
+
// let the user interact with it.
|
|
496
|
+
// for keyboard navigation, this only counts if the element
|
|
497
|
+
// does not have focus.
|
|
498
|
+
// for tooltips opened via the api we need to check if it
|
|
499
|
+
// has the forcedOpen flag.
|
|
500
|
+
if (!isMouseOver(session.activeHover) && !session.activeHover.is(":focus") && !session.activeHover.data('forcedOpen')) {
|
|
501
|
+
if (tipElement.data('mouseOnToPopup')) {
|
|
502
|
+
if (!isMouseOver(tipElement)) {
|
|
503
|
+
isDesynced = true;
|
|
504
|
+
}
|
|
505
|
+
} else {
|
|
506
|
+
isDesynced = true;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
if (isDesynced) {
|
|
512
|
+
// close the desynced tip
|
|
513
|
+
hideTip(session.activeHover);
|
|
514
|
+
}
|
|
515
|
+
}
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
/**
|
|
519
|
+
* Moves the tooltip popup to the users mouse cursor.
|
|
520
|
+
* @private
|
|
521
|
+
*/
|
|
522
|
+
function positionTipOnCursor() {
|
|
523
|
+
// to support having fixed powertips on the same page as cursor
|
|
524
|
+
// powertips, where both instances are referencing the same popup
|
|
525
|
+
// element, we need to keep track of the mouse position constantly,
|
|
526
|
+
// but we should only set the pop location if a fixed pop is not
|
|
527
|
+
// currently open, a pop open is imminent or active, and the popup
|
|
528
|
+
// element in question does have a mouse-follow using it.
|
|
529
|
+
if ((session.isPopOpen && !session.isFixedPopOpen) || (session.popOpenImminent && !session.isFixedPopOpen && tipElement.data('hasMouseMove'))) {
|
|
530
|
+
// grab measurements
|
|
531
|
+
var scrollTop = $window.scrollTop(),
|
|
532
|
+
windowWidth = $window.width(),
|
|
533
|
+
windowHeight = $window.height(),
|
|
534
|
+
popWidth = tipElement.outerWidth(),
|
|
535
|
+
popHeight = tipElement.outerHeight(),
|
|
536
|
+
x = 0,
|
|
537
|
+
y = 0;
|
|
538
|
+
|
|
539
|
+
// constrain pop to browser viewport
|
|
540
|
+
if ((popWidth + session.currentX + options.offset) < windowWidth) {
|
|
541
|
+
x = session.currentX + options.offset;
|
|
542
|
+
} else {
|
|
543
|
+
x = windowWidth - popWidth;
|
|
544
|
+
}
|
|
545
|
+
if ((popHeight + session.currentY + options.offset) < (scrollTop + windowHeight)) {
|
|
546
|
+
y = session.currentY + options.offset;
|
|
547
|
+
} else {
|
|
548
|
+
y = scrollTop + windowHeight - popHeight;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
// position the tooltip
|
|
552
|
+
setTipPosition(x, y);
|
|
553
|
+
}
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
/**
|
|
557
|
+
* Sets the tooltip popup too the correct position relative to the
|
|
558
|
+
* specified target element. Based on options settings.
|
|
559
|
+
* @private
|
|
560
|
+
* @param {Object} element The element that the popup should target.
|
|
561
|
+
*/
|
|
562
|
+
function positionTipOnElement(element) {
|
|
563
|
+
var tipWidth = tipElement.outerWidth(),
|
|
564
|
+
tipHeight = tipElement.outerHeight(),
|
|
565
|
+
priorityList,
|
|
566
|
+
placementCoords,
|
|
567
|
+
finalPlacement,
|
|
568
|
+
collisions;
|
|
569
|
+
|
|
570
|
+
// with smart placement we will try a series of placement
|
|
571
|
+
// options and use the first one that does not collide with the
|
|
572
|
+
// browser view port boundaries.
|
|
573
|
+
if (options.smartPlacement) {
|
|
574
|
+
|
|
575
|
+
// grab the placement priority list
|
|
576
|
+
priorityList = $.fn.powerTip.smartPlacementLists[options.placement];
|
|
577
|
+
|
|
578
|
+
// iterate over the priority list and use the first placement
|
|
579
|
+
// option that does not collide with the viewport. if they all
|
|
580
|
+
// collide then the last placement in the list will be used.
|
|
581
|
+
$.each(priorityList, function(idx, pos) {
|
|
582
|
+
// get placement coordinates
|
|
583
|
+
placementCoords = computePlacementCoords(
|
|
584
|
+
element,
|
|
585
|
+
pos,
|
|
586
|
+
tipWidth,
|
|
587
|
+
tipHeight
|
|
588
|
+
);
|
|
589
|
+
finalPlacement = pos;
|
|
590
|
+
|
|
591
|
+
// find collisions
|
|
592
|
+
collisions = getViewportCollisions(
|
|
593
|
+
placementCoords,
|
|
594
|
+
tipWidth,
|
|
595
|
+
tipHeight
|
|
596
|
+
);
|
|
597
|
+
|
|
598
|
+
// break if there were no collisions
|
|
599
|
+
if (collisions.length === 0) {
|
|
600
|
+
return false;
|
|
601
|
+
}
|
|
602
|
+
});
|
|
603
|
+
|
|
604
|
+
} else {
|
|
605
|
+
|
|
606
|
+
// if we're not going to use the smart placement feature then
|
|
607
|
+
// just compute the coordinates and do it
|
|
608
|
+
placementCoords = computePlacementCoords(
|
|
609
|
+
element,
|
|
610
|
+
options.placement,
|
|
611
|
+
tipWidth,
|
|
612
|
+
tipHeight
|
|
613
|
+
);
|
|
614
|
+
finalPlacement = options.placement;
|
|
615
|
+
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
// add placement as class for CSS arrows
|
|
619
|
+
tipElement.addClass(finalPlacement);
|
|
620
|
+
|
|
621
|
+
// position the tooltip
|
|
622
|
+
setTipPosition(placementCoords.x, placementCoords.y);
|
|
623
|
+
}
|
|
624
|
+
|
|
625
|
+
/**
|
|
626
|
+
* Compute the top/left coordinates to display the tooltip at the
|
|
627
|
+
* specified placement relative to the specified element.
|
|
628
|
+
* @private
|
|
629
|
+
* @param {Object} element The element that the tooltip should target.
|
|
630
|
+
* @param {String} placement The placement for the tooltip.
|
|
631
|
+
* @param {Number} popWidth Width of the tooltip element in pixels.
|
|
632
|
+
* @param {Number} popHeight Height of the tooltip element in pixels.
|
|
633
|
+
* @retun {Object} An object with the x and y coordinates.
|
|
634
|
+
*/
|
|
635
|
+
function computePlacementCoords(element, placement, popWidth, popHeight) {
|
|
636
|
+
// grab measurements
|
|
637
|
+
var objectOffset = element.offset(),
|
|
638
|
+
objectWidth = element.outerWidth(),
|
|
639
|
+
objectHeight = element.outerHeight(),
|
|
640
|
+
x = 0,
|
|
641
|
+
y = 0;
|
|
642
|
+
|
|
643
|
+
// calculate the appropriate x and y position in the document
|
|
644
|
+
switch (placement) {
|
|
645
|
+
case 'n':
|
|
646
|
+
x = (objectOffset.left + (objectWidth / 2)) - (popWidth / 2);
|
|
647
|
+
y = objectOffset.top - popHeight - options.offset;
|
|
648
|
+
break;
|
|
649
|
+
case 'e':
|
|
650
|
+
x = objectOffset.left + objectWidth + options.offset;
|
|
651
|
+
y = (objectOffset.top + (objectHeight / 2)) - (popHeight / 2);
|
|
652
|
+
break;
|
|
653
|
+
case 's':
|
|
654
|
+
x = (objectOffset.left + (objectWidth / 2)) - (popWidth / 2);
|
|
655
|
+
y = objectOffset.top + objectHeight + options.offset;
|
|
656
|
+
break;
|
|
657
|
+
case 'w':
|
|
658
|
+
x = objectOffset.left - popWidth - options.offset;
|
|
659
|
+
y = (objectOffset.top + (objectHeight / 2)) - (popHeight / 2);
|
|
660
|
+
break;
|
|
661
|
+
case 'nw':
|
|
662
|
+
x = (objectOffset.left - popWidth) + 20;
|
|
663
|
+
y = objectOffset.top - popHeight - options.offset;
|
|
664
|
+
break;
|
|
665
|
+
case 'ne':
|
|
666
|
+
x = (objectOffset.left + objectWidth) - 20;
|
|
667
|
+
y = objectOffset.top - popHeight - options.offset;
|
|
668
|
+
break;
|
|
669
|
+
case 'sw':
|
|
670
|
+
x = (objectOffset.left - popWidth) + 20;
|
|
671
|
+
y = objectOffset.top + objectHeight + options.offset;
|
|
672
|
+
break;
|
|
673
|
+
case 'se':
|
|
674
|
+
x = (objectOffset.left + objectWidth) - 20;
|
|
675
|
+
y = objectOffset.top + objectHeight + options.offset;
|
|
676
|
+
break;
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
return {
|
|
680
|
+
x: Math.round(x),
|
|
681
|
+
y: Math.round(y)
|
|
682
|
+
};
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
/**
|
|
686
|
+
* Sets the tooltip CSS position on the document.
|
|
687
|
+
* @private
|
|
688
|
+
* @param {Number} x Left position in pixels.
|
|
689
|
+
* @param {Number} y Top position in pixels.
|
|
690
|
+
*/
|
|
691
|
+
function setTipPosition(x, y) {
|
|
692
|
+
tipElement.css('left', x + 'px');
|
|
693
|
+
tipElement.css('top', y + 'px');
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
// expose methods
|
|
697
|
+
return {
|
|
698
|
+
showTip: beginShowTip,
|
|
699
|
+
hideTip: hideTip
|
|
700
|
+
};
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
/**
|
|
704
|
+
* Hooks mouse position tracking to mousemove and scroll events.
|
|
705
|
+
* Prevents attaching the events more than once.
|
|
706
|
+
* @private
|
|
707
|
+
*/
|
|
708
|
+
function initMouseTracking() {
|
|
709
|
+
var lastScrollX = 0,
|
|
710
|
+
lastScrollY = 0;
|
|
711
|
+
|
|
712
|
+
if (!session.mouseTrackingActive) {
|
|
713
|
+
session.mouseTrackingActive = true;
|
|
714
|
+
|
|
715
|
+
// grab the current scroll position on load
|
|
716
|
+
$(function() {
|
|
717
|
+
lastScrollX = $document.scrollLeft();
|
|
718
|
+
lastScrollY = $document.scrollTop();
|
|
719
|
+
});
|
|
720
|
+
|
|
721
|
+
// hook mouse position tracking
|
|
722
|
+
$document.on({
|
|
723
|
+
mousemove: trackMouse,
|
|
724
|
+
scroll: function() {
|
|
725
|
+
var x = $document.scrollLeft(),
|
|
726
|
+
y = $document.scrollTop();
|
|
727
|
+
if (x !== lastScrollX) {
|
|
728
|
+
session.currentX += x - lastScrollX;
|
|
729
|
+
lastScrollX = x;
|
|
730
|
+
}
|
|
731
|
+
if (y !== lastScrollY) {
|
|
732
|
+
session.currentY += y - lastScrollY;
|
|
733
|
+
lastScrollY = y;
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
});
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
/**
|
|
741
|
+
* Saves the current mouse coordinates to the powerTip session object.
|
|
742
|
+
* @private
|
|
743
|
+
* @param {Object} event The mousemove event for the document.
|
|
744
|
+
*/
|
|
745
|
+
function trackMouse(event) {
|
|
746
|
+
session.currentX = event.pageX;
|
|
747
|
+
session.currentY = event.pageY;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
/**
|
|
751
|
+
* Tests if the mouse is currently over the specified element.
|
|
752
|
+
* @private
|
|
753
|
+
* @param {Object} element The element to check for hover.
|
|
754
|
+
* @return {Boolean}
|
|
755
|
+
*/
|
|
756
|
+
function isMouseOver(element) {
|
|
757
|
+
var elementPosition = element.offset();
|
|
758
|
+
return session.currentX >= elementPosition.left &&
|
|
759
|
+
session.currentX <= elementPosition.left + element.outerWidth() &&
|
|
760
|
+
session.currentY >= elementPosition.top &&
|
|
761
|
+
session.currentY <= elementPosition.top + element.outerHeight();
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
/**
|
|
765
|
+
* Finds any viewport collisions that an element (the tooltip) would have
|
|
766
|
+
* if it were absolutely positioned at the specified coordinates.
|
|
767
|
+
* @private
|
|
768
|
+
* @param {Object} coords Coordinates for the element. (e.g. {x: 123, y: 123})
|
|
769
|
+
* @param {Number} elementWidth Width of the element in pixels.
|
|
770
|
+
* @param {Number} elementHeight Height of the element in pixels.
|
|
771
|
+
* @return {Array} Array of words representing directional collisions.
|
|
772
|
+
*/
|
|
773
|
+
function getViewportCollisions(coords, elementWidth, elementHeight) {
|
|
774
|
+
var scrollLeft = $window.scrollLeft(),
|
|
775
|
+
scrollTop = $window.scrollTop(),
|
|
776
|
+
windowWidth = $window.width(),
|
|
777
|
+
windowHeight = $window.height(),
|
|
778
|
+
collisions = [];
|
|
779
|
+
|
|
780
|
+
if (coords.y < scrollTop) {
|
|
781
|
+
collisions.push('top');
|
|
782
|
+
}
|
|
783
|
+
if (coords.y + elementHeight > scrollTop + windowHeight) {
|
|
784
|
+
collisions.push('bottom');
|
|
785
|
+
}
|
|
786
|
+
if (coords.x < scrollLeft) {
|
|
787
|
+
collisions.push('left');
|
|
788
|
+
}
|
|
789
|
+
if (coords.x + elementWidth > scrollLeft + windowWidth) {
|
|
790
|
+
collisions.push('right');
|
|
791
|
+
}
|
|
792
|
+
|
|
793
|
+
return collisions;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
}(jQuery));
|