spree_backend 2.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -0,0 +1,60 @@
|
|
1
|
+
jQuery.fn.AdaptiveMenu = function(options){
|
2
|
+
|
3
|
+
var options = jQuery.extend({
|
4
|
+
text: "More...",
|
5
|
+
accuracy:70,
|
6
|
+
'class':null,
|
7
|
+
'classLinckMore':null
|
8
|
+
},options);
|
9
|
+
|
10
|
+
var menu = this;
|
11
|
+
var li = $(menu).find("li");
|
12
|
+
|
13
|
+
// li.css({"display":"inline","white-space":"nowrap"});
|
14
|
+
|
15
|
+
var width = 0;
|
16
|
+
var widthLi = [];
|
17
|
+
$.each( li , function(i, l){
|
18
|
+
width += $(l).width();
|
19
|
+
widthLi.push( width );
|
20
|
+
});
|
21
|
+
|
22
|
+
var buildingMenu = function(windowWidth){
|
23
|
+
var windowWidth = windowWidth - options.accuracy;
|
24
|
+
for(var i = 0; i<widthLi.length; i++ ){
|
25
|
+
if ( widthLi[i] > windowWidth )
|
26
|
+
$( li[i] ).hide();
|
27
|
+
else
|
28
|
+
$( li[i] ).show();
|
29
|
+
}
|
30
|
+
$(menu).find('#more').remove();
|
31
|
+
var hideLi = $(li).filter(':not(:visible)');
|
32
|
+
var lastLi = $(li).filter(':visible').last();
|
33
|
+
if ( hideLi.length > 0 ){
|
34
|
+
var more = $("<li>")
|
35
|
+
.css({"display":"inline-block","white-space":"nowrap"})
|
36
|
+
.addClass(options.classLinckMore)
|
37
|
+
.attr({"id":"more"})
|
38
|
+
.html(options.text)
|
39
|
+
.click(function(){$(this).find('li').toggle()});
|
40
|
+
|
41
|
+
var ul = $("<ul>")
|
42
|
+
.css({"position":"absolute"})
|
43
|
+
.addClass(options.klass)
|
44
|
+
.html(hideLi.clone()).prepend(lastLi.clone().hide());
|
45
|
+
|
46
|
+
more.append(ul);
|
47
|
+
|
48
|
+
lastLi.hide().before(more);
|
49
|
+
}
|
50
|
+
}
|
51
|
+
|
52
|
+
jQuery(window).resize(function() {
|
53
|
+
buildingMenu( jQuery(window).width() );
|
54
|
+
});
|
55
|
+
|
56
|
+
jQuery(window).ready(function() {
|
57
|
+
buildingMenu( jQuery(window).width() );
|
58
|
+
});
|
59
|
+
|
60
|
+
};
|
@@ -0,0 +1,235 @@
|
|
1
|
+
// jQuery Alert Dialogs Plugin
|
2
|
+
//
|
3
|
+
// Version 1.1
|
4
|
+
//
|
5
|
+
// Cory S.N. LaViska
|
6
|
+
// A Beautiful Site (http://abeautifulsite.net/)
|
7
|
+
// 14 May 2009
|
8
|
+
//
|
9
|
+
// Visit http://abeautifulsite.net/notebook/87 for more information
|
10
|
+
//
|
11
|
+
// Usage:
|
12
|
+
// jAlert( message, [title, callback] )
|
13
|
+
// jConfirm( message, [title, callback] )
|
14
|
+
// jPrompt( message, [value, title, callback] )
|
15
|
+
//
|
16
|
+
// History:
|
17
|
+
//
|
18
|
+
// 1.00 - Released (29 December 2008)
|
19
|
+
//
|
20
|
+
// 1.01 - Fixed bug where unbinding would destroy all resize events
|
21
|
+
//
|
22
|
+
// License:
|
23
|
+
//
|
24
|
+
// This plugin is dual-licensed under the GNU General Public License and the MIT License and
|
25
|
+
// is copyright 2008 A Beautiful Site, LLC.
|
26
|
+
//
|
27
|
+
(function($) {
|
28
|
+
|
29
|
+
$.alerts = {
|
30
|
+
|
31
|
+
// These properties can be read/written by accessing $.alerts.propertyName from your scripts at any time
|
32
|
+
|
33
|
+
verticalOffset: -75, // vertical offset of the dialog from center screen, in pixels
|
34
|
+
horizontalOffset: 0, // horizontal offset of the dialog from center screen, in pixels/
|
35
|
+
repositionOnResize: true, // re-centers the dialog on window resize
|
36
|
+
overlayOpacity: .01, // transparency level of overlay
|
37
|
+
overlayColor: '#FFF', // base color of overlay
|
38
|
+
draggable: true, // make the dialogs draggable (requires UI Draggables plugin)
|
39
|
+
okButton: ' OK ', // text for the OK button
|
40
|
+
cancelButton: ' Cancel ', // text for the Cancel button
|
41
|
+
dialogClass: null, // if specified, this class will be applied to all dialogs
|
42
|
+
|
43
|
+
// Public methods
|
44
|
+
|
45
|
+
alert: function(message, title, callback) {
|
46
|
+
if( title == null ) title = 'Alert';
|
47
|
+
$.alerts._show(title, message, null, 'alert', function(result) {
|
48
|
+
if( callback ) callback(result);
|
49
|
+
});
|
50
|
+
},
|
51
|
+
|
52
|
+
confirm: function(message, title, callback) {
|
53
|
+
if( title == null ) title = 'Confirm';
|
54
|
+
$.alerts._show(title, message, null, 'confirm', function(result) {
|
55
|
+
if( callback ) callback(result);
|
56
|
+
});
|
57
|
+
},
|
58
|
+
|
59
|
+
prompt: function(message, value, title, callback) {
|
60
|
+
if( title == null ) title = 'Prompt';
|
61
|
+
$.alerts._show(title, message, value, 'prompt', function(result) {
|
62
|
+
if( callback ) callback(result);
|
63
|
+
});
|
64
|
+
},
|
65
|
+
|
66
|
+
// Private methods
|
67
|
+
|
68
|
+
_show: function(title, msg, value, type, callback) {
|
69
|
+
|
70
|
+
$.alerts._hide();
|
71
|
+
$.alerts._overlay('show');
|
72
|
+
|
73
|
+
$("BODY").append(
|
74
|
+
'<div id="popup_container">' +
|
75
|
+
'<h1 id="popup_title"></h1>' +
|
76
|
+
'<div id="popup_content">' +
|
77
|
+
'<div id="popup_message"></div>' +
|
78
|
+
'</div>' +
|
79
|
+
'</div>');
|
80
|
+
|
81
|
+
if( $.alerts.dialogClass ) $("#popup_container").addClass($.alerts.dialogClass);
|
82
|
+
|
83
|
+
// IE6 Fix
|
84
|
+
var pos = ($.browser.msie && parseInt($.browser.version) <= 6 ) ? 'absolute' : 'fixed';
|
85
|
+
|
86
|
+
$("#popup_container").css({
|
87
|
+
position: pos,
|
88
|
+
zIndex: 99999,
|
89
|
+
padding: 0,
|
90
|
+
margin: 0
|
91
|
+
});
|
92
|
+
|
93
|
+
$("#popup_title").text(title);
|
94
|
+
$("#popup_content").addClass(type);
|
95
|
+
$("#popup_message").text(msg);
|
96
|
+
$("#popup_message").html( $("#popup_message").text().replace(/\n/g, '<br />') );
|
97
|
+
|
98
|
+
$("#popup_container").css({
|
99
|
+
minWidth: $("#popup_container").outerWidth(),
|
100
|
+
maxWidth: $("#popup_container").outerWidth()
|
101
|
+
});
|
102
|
+
|
103
|
+
$.alerts._reposition();
|
104
|
+
$.alerts._maintainPosition(true);
|
105
|
+
|
106
|
+
switch( type ) {
|
107
|
+
case 'alert':
|
108
|
+
$("#popup_message").after('<div id="popup_panel"><input type="button" value="' + $.alerts.okButton + '" id="popup_ok" /></div>');
|
109
|
+
$("#popup_ok").click( function() {
|
110
|
+
$.alerts._hide();
|
111
|
+
callback(true);
|
112
|
+
});
|
113
|
+
$("#popup_ok").focus().keypress( function(e) {
|
114
|
+
if( e.keyCode == 13 || e.keyCode == 27 ) $("#popup_ok").trigger('click');
|
115
|
+
});
|
116
|
+
break;
|
117
|
+
case 'confirm':
|
118
|
+
$("#popup_message").after('<div id="popup_panel"><input type="button" value="' + $.alerts.okButton + '" id="popup_ok" /> <input type="button" value="' + $.alerts.cancelButton + '" id="popup_cancel" /></div>');
|
119
|
+
$("#popup_ok").click( function() {
|
120
|
+
$.alerts._hide();
|
121
|
+
if( callback ) callback(true);
|
122
|
+
});
|
123
|
+
$("#popup_cancel").click( function() {
|
124
|
+
$.alerts._hide();
|
125
|
+
if( callback ) callback(false);
|
126
|
+
});
|
127
|
+
$("#popup_ok").focus();
|
128
|
+
$("#popup_ok, #popup_cancel").keypress( function(e) {
|
129
|
+
if( e.keyCode == 13 ) $("#popup_ok").trigger('click');
|
130
|
+
if( e.keyCode == 27 ) $("#popup_cancel").trigger('click');
|
131
|
+
});
|
132
|
+
break;
|
133
|
+
case 'prompt':
|
134
|
+
$("#popup_message").append('<br /><input type="text" size="30" id="popup_prompt" />').after('<div id="popup_panel"><input type="button" value="' + $.alerts.okButton + '" id="popup_ok" /> <input type="button" value="' + $.alerts.cancelButton + '" id="popup_cancel" /></div>');
|
135
|
+
$("#popup_prompt").width( $("#popup_message").width() );
|
136
|
+
$("#popup_ok").click( function() {
|
137
|
+
var val = $("#popup_prompt").val();
|
138
|
+
$.alerts._hide();
|
139
|
+
if( callback ) callback( val );
|
140
|
+
});
|
141
|
+
$("#popup_cancel").click( function() {
|
142
|
+
$.alerts._hide();
|
143
|
+
if( callback ) callback( null );
|
144
|
+
});
|
145
|
+
$("#popup_prompt, #popup_ok, #popup_cancel").keypress( function(e) {
|
146
|
+
if( e.keyCode == 13 ) $("#popup_ok").trigger('click');
|
147
|
+
if( e.keyCode == 27 ) $("#popup_cancel").trigger('click');
|
148
|
+
});
|
149
|
+
if( value ) $("#popup_prompt").val(value);
|
150
|
+
$("#popup_prompt").focus().select();
|
151
|
+
break;
|
152
|
+
}
|
153
|
+
|
154
|
+
// Make draggable
|
155
|
+
if( $.alerts.draggable ) {
|
156
|
+
try {
|
157
|
+
$("#popup_container").draggable({ handle: $("#popup_title") });
|
158
|
+
$("#popup_title").css({ cursor: 'move' });
|
159
|
+
} catch(e) { /* requires jQuery UI draggables */ }
|
160
|
+
}
|
161
|
+
},
|
162
|
+
|
163
|
+
_hide: function() {
|
164
|
+
$("#popup_container").remove();
|
165
|
+
$.alerts._overlay('hide');
|
166
|
+
$.alerts._maintainPosition(false);
|
167
|
+
},
|
168
|
+
|
169
|
+
_overlay: function(status) {
|
170
|
+
switch( status ) {
|
171
|
+
case 'show':
|
172
|
+
$.alerts._overlay('hide');
|
173
|
+
$("BODY").append('<div id="popup_overlay"></div>');
|
174
|
+
$("#popup_overlay").css({
|
175
|
+
position: 'absolute',
|
176
|
+
zIndex: 99998,
|
177
|
+
top: '0px',
|
178
|
+
left: '0px',
|
179
|
+
width: '100%',
|
180
|
+
height: $(document).height(),
|
181
|
+
background: $.alerts.overlayColor,
|
182
|
+
opacity: $.alerts.overlayOpacity
|
183
|
+
});
|
184
|
+
break;
|
185
|
+
case 'hide':
|
186
|
+
$("#popup_overlay").remove();
|
187
|
+
break;
|
188
|
+
}
|
189
|
+
},
|
190
|
+
|
191
|
+
_reposition: function() {
|
192
|
+
var top = (($(window).height() / 2) - ($("#popup_container").outerHeight() / 2)) + $.alerts.verticalOffset;
|
193
|
+
var left = (($(window).width() / 2) - ($("#popup_container").outerWidth() / 2)) + $.alerts.horizontalOffset;
|
194
|
+
if( top < 0 ) top = 0;
|
195
|
+
if( left < 0 ) left = 0;
|
196
|
+
|
197
|
+
// IE6 fix
|
198
|
+
if( $.browser.msie && parseInt($.browser.version) <= 6 ) top = top + $(window).scrollTop();
|
199
|
+
|
200
|
+
$("#popup_container").css({
|
201
|
+
top: top + 'px',
|
202
|
+
left: left + 'px'
|
203
|
+
});
|
204
|
+
$("#popup_overlay").height( $(document).height() );
|
205
|
+
},
|
206
|
+
|
207
|
+
_maintainPosition: function(status) {
|
208
|
+
if( $.alerts.repositionOnResize ) {
|
209
|
+
switch(status) {
|
210
|
+
case true:
|
211
|
+
$(window).bind('resize', $.alerts._reposition);
|
212
|
+
break;
|
213
|
+
case false:
|
214
|
+
$(window).unbind('resize', $.alerts._reposition);
|
215
|
+
break;
|
216
|
+
}
|
217
|
+
}
|
218
|
+
}
|
219
|
+
|
220
|
+
}
|
221
|
+
|
222
|
+
// Shortuct functions
|
223
|
+
jAlert = function(message, title, callback) {
|
224
|
+
$.alerts.alert(message, title, callback);
|
225
|
+
}
|
226
|
+
|
227
|
+
jConfirm = function(message, title, callback) {
|
228
|
+
$.alerts.confirm(message, title, callback);
|
229
|
+
};
|
230
|
+
|
231
|
+
jPrompt = function(message, value, title, callback) {
|
232
|
+
$.alerts.prompt(message, value, title, callback);
|
233
|
+
};
|
234
|
+
|
235
|
+
})(jQuery);
|
@@ -0,0 +1,41 @@
|
|
1
|
+
/**
|
2
|
+
* jQuery Cookie plugin
|
3
|
+
*
|
4
|
+
* Copyright (c) 2010 Klaus Hartl (stilbuero.de)
|
5
|
+
* Dual licensed under the MIT and GPL licenses:
|
6
|
+
* http://www.opensource.org/licenses/mit-license.php
|
7
|
+
* http://www.gnu.org/licenses/gpl.html
|
8
|
+
*
|
9
|
+
*/
|
10
|
+
jQuery.cookie = function (key, value, options) {
|
11
|
+
|
12
|
+
// key and at least value given, set cookie...
|
13
|
+
if (arguments.length > 1 && String(value) !== "[object Object]") {
|
14
|
+
options = jQuery.extend({}, options);
|
15
|
+
|
16
|
+
if (value === null || value === undefined) {
|
17
|
+
options.expires = -1;
|
18
|
+
}
|
19
|
+
|
20
|
+
if (typeof options.expires === 'number') {
|
21
|
+
var days = options.expires, t = options.expires = new Date();
|
22
|
+
t.setDate(t.getDate() + days);
|
23
|
+
}
|
24
|
+
|
25
|
+
value = String(value);
|
26
|
+
|
27
|
+
return (document.cookie = [
|
28
|
+
encodeURIComponent(key), '=',
|
29
|
+
options.raw ? value : encodeURIComponent(value),
|
30
|
+
options.expires ? '; expires=' + options.expires.toUTCString() : '', // use expires attribute, max-age is not supported by IE
|
31
|
+
options.path ? '; path=' + options.path : '',
|
32
|
+
options.domain ? '; domain=' + options.domain : '',
|
33
|
+
options.secure ? '; secure' : ''
|
34
|
+
].join(''));
|
35
|
+
}
|
36
|
+
|
37
|
+
// key and possibly options given, get cookie...
|
38
|
+
options = value || {};
|
39
|
+
var result, decode = options.raw ? function (s) { return s; } : decodeURIComponent;
|
40
|
+
return (result = new RegExp('(?:^|; )' + encodeURIComponent(key) + '=([^;]*)').exec(document.cookie)) ? decode(result[1]) : null;
|
41
|
+
};
|
@@ -0,0 +1,35 @@
|
|
1
|
+
/*
|
2
|
+
jQuery delayed observer - 0.8
|
3
|
+
http://code.google.com/p/jquery-utils/
|
4
|
+
|
5
|
+
(c) Maxime Haineault <haineault@gmail.com>
|
6
|
+
http://haineault.com
|
7
|
+
|
8
|
+
MIT License (http://www.opensource.org/licenses/mit-license.php)
|
9
|
+
|
10
|
+
*/
|
11
|
+
|
12
|
+
(function($){
|
13
|
+
$.extend($.fn, {
|
14
|
+
delayedObserver: function(callback, delay, options){
|
15
|
+
return this.each(function(){
|
16
|
+
var el = $(this);
|
17
|
+
var op = options || {};
|
18
|
+
el.data('oldval', el.val())
|
19
|
+
.data('delay', delay || 0.5)
|
20
|
+
.data('condition', op.condition || function() { return ($(this).data('oldval') == $(this).val()); })
|
21
|
+
.data('callback', callback)
|
22
|
+
[(op.event||'keyup')](function(){
|
23
|
+
if (el.data('condition').apply(el)) { return; }
|
24
|
+
else {
|
25
|
+
if (el.data('timer')) { clearTimeout(el.data('timer')); }
|
26
|
+
el.data('timer', setTimeout(function(){
|
27
|
+
el.data('callback').apply(el);
|
28
|
+
}, el.data('delay') * 1000));
|
29
|
+
el.data('oldval', el.val());
|
30
|
+
}
|
31
|
+
});
|
32
|
+
});
|
33
|
+
}
|
34
|
+
});
|
35
|
+
})(jQuery);
|
@@ -0,0 +1,141 @@
|
|
1
|
+
/**
|
2
|
+
* jQuery Horizontal Navigation 1.0
|
3
|
+
* https://github.com/sebnitu/horizontalNav
|
4
|
+
*
|
5
|
+
* By Sebastian Nitu - Copyright 2012 - All rights reserved
|
6
|
+
* Author URL: http://sebnitu.com
|
7
|
+
*/
|
8
|
+
(function($) {
|
9
|
+
|
10
|
+
$.fn.horizontalNav = function(options) {
|
11
|
+
|
12
|
+
// Extend our default options with those provided.
|
13
|
+
var opts = $.extend({}, $.fn.horizontalNav.defaults, options);
|
14
|
+
|
15
|
+
return this.each(function () {
|
16
|
+
|
17
|
+
// Save our object
|
18
|
+
var $this = $(this);
|
19
|
+
|
20
|
+
// Build element specific options
|
21
|
+
// This lets me access options with this syntax: o.optionName
|
22
|
+
var o = $.meta ? $.extend({}, opts, $this.data()) : opts;
|
23
|
+
|
24
|
+
// Save the wrapper. The wrapper is the element that
|
25
|
+
// we figure out what the full width should be
|
26
|
+
if ($this.is('ul')) {
|
27
|
+
var ul_wrap = $this.parent();
|
28
|
+
} else {
|
29
|
+
var ul_wrap = $this;
|
30
|
+
}
|
31
|
+
|
32
|
+
// let's append a clearfixing element to the ul wrapper
|
33
|
+
ul_wrap.css({ 'zoom' : '1' }).append('<div class="clearHorizontalNav">');
|
34
|
+
$('.clearHorizontalNav').css({
|
35
|
+
'display' : 'block',
|
36
|
+
'overflow' : 'hidden',
|
37
|
+
'visibility' : 'hidden',
|
38
|
+
'width' : 0,
|
39
|
+
'height' : 0,
|
40
|
+
'clear' : 'both'
|
41
|
+
});
|
42
|
+
|
43
|
+
// Grab elements we'll need and add some default styles
|
44
|
+
var ul = $this.is('ul') ? $this : ul_wrap.find('> ul'), // The unordered list element
|
45
|
+
li = ul.find('> li'), // All list items
|
46
|
+
li_last = li.last(), // Last list item
|
47
|
+
li_count = li.size(), // The number of navigation elements
|
48
|
+
li_a = li.find('> a'); // Remove padding from the links
|
49
|
+
|
50
|
+
// If set to responsive, re-construct after every browser resize
|
51
|
+
if ( o.responsive === true ) {
|
52
|
+
// Only need to do this for IE7 and below
|
53
|
+
// or if we set tableDisplay to false
|
54
|
+
if ( (o.tableDisplay != true) || ($.browser.msie && parseInt($.browser.version, 10) <= 7) ) {
|
55
|
+
resizeTrigger( _construct, o.responsiveDelay );
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
// Initiate the plugin
|
60
|
+
_construct();
|
61
|
+
|
62
|
+
// Returns the true inner width of an element
|
63
|
+
// Essentially it's the inner width without padding.
|
64
|
+
function trueInnerWidth(element) {
|
65
|
+
return element.innerWidth() - (
|
66
|
+
parseInt(element.css('padding-left')) + parseInt(element.css('padding-right'))
|
67
|
+
);
|
68
|
+
}
|
69
|
+
|
70
|
+
// Call funcion on browser resize
|
71
|
+
function resizeTrigger(callback, delay) {
|
72
|
+
// Delay before function is called
|
73
|
+
delay = delay || 100;
|
74
|
+
// Call function on resize
|
75
|
+
var resizeTimer;
|
76
|
+
$(window).resize(function() {
|
77
|
+
clearTimeout(resizeTimer);
|
78
|
+
resizeTimer = setTimeout(function() {
|
79
|
+
callback();
|
80
|
+
}, delay);
|
81
|
+
});
|
82
|
+
}
|
83
|
+
|
84
|
+
// The heavy lifting of this plugin. This is where we
|
85
|
+
// find and set the appropriate widths for list items
|
86
|
+
function _construct() {
|
87
|
+
|
88
|
+
if ( (o.tableDisplay != true) || ($.browser.msie && parseInt($.browser.version, 10) <= 7) ) {
|
89
|
+
|
90
|
+
// IE7 doesn't support the "display: table" method
|
91
|
+
// so we need to do it the hard way.
|
92
|
+
|
93
|
+
// Add some styles
|
94
|
+
ul.css({ 'float' : 'left' });
|
95
|
+
li.css({ 'float' : 'left', 'width' : 'auto' });
|
96
|
+
li_a.css({ 'padding-left' : 0, 'padding-right' : 0 });
|
97
|
+
|
98
|
+
// Grabbing widths and doing some math
|
99
|
+
var ul_width = trueInnerWidth(ul),
|
100
|
+
ul_width_outer = ul.outerWidth(true),
|
101
|
+
ul_width_extra = ul_width_outer - ul_width,
|
102
|
+
|
103
|
+
full_width = trueInnerWidth(ul_wrap),
|
104
|
+
extra_width = (full_width - ul_width_extra) - ul_width,
|
105
|
+
li_padding = Math.floor( extra_width / li_count );
|
106
|
+
|
107
|
+
// Cycle through the list items and give them widths
|
108
|
+
li.each(function(index) {
|
109
|
+
var li_width = trueInnerWidth( $(this) );
|
110
|
+
$(this).css({ 'width' : (li_width + li_padding) + 'px' });
|
111
|
+
});
|
112
|
+
|
113
|
+
// Get the leftover pixels after we set every itms width
|
114
|
+
var li_last_width = trueInnerWidth(li_last) + ( (full_width - ul_width_extra) - trueInnerWidth(ul) );
|
115
|
+
// I hate to do this but for some reason Firefox (v13.0) and IE are always
|
116
|
+
// one pixel off when rendering. So this is a quick fix for that.
|
117
|
+
if ($.browser.mozilla || $.browser.msie) {
|
118
|
+
li_last_width = li_last_width - 1;
|
119
|
+
}
|
120
|
+
// Add the leftovers to the last navigation item
|
121
|
+
li_last.css({ 'width' : li_last_width + 'px' });
|
122
|
+
|
123
|
+
} else {
|
124
|
+
// Every modern browser supports the "display: table" method
|
125
|
+
// so this is the best way to do it for them.
|
126
|
+
ul.css({ 'display' : 'table', 'float' : 'none', 'width' : '100%' });
|
127
|
+
li.css({ 'display' : 'table-cell', 'float' : 'none' });
|
128
|
+
}
|
129
|
+
}
|
130
|
+
|
131
|
+
}); // @end of return this.each()
|
132
|
+
|
133
|
+
};
|
134
|
+
|
135
|
+
$.fn.horizontalNav.defaults = {
|
136
|
+
responsive : true,
|
137
|
+
responsiveDelay : 100,
|
138
|
+
tableDisplay : true
|
139
|
+
};
|
140
|
+
|
141
|
+
})(jQuery);
|