spree_backend 2.4.10 → 3.0.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/assets/javascripts/spree/backend/adjustments.js.coffee +1 -2
- data/app/assets/javascripts/spree/backend/admin.js.erb +136 -53
- data/app/assets/javascripts/spree/backend/checkouts/edit.js +1 -4
- data/app/assets/javascripts/spree/backend/index.html +15 -0
- data/app/assets/javascripts/spree/backend/line_items.js.coffee +1 -4
- data/app/assets/javascripts/spree/backend/line_items_on_order_edit.js.erb +3 -16
- data/app/assets/javascripts/spree/backend/option_type_autocomplete.js.erb +2 -4
- data/app/assets/javascripts/spree/backend/option_value_picker.js +44 -0
- data/app/assets/javascripts/spree/backend/orders/edit_form.js +2 -3
- data/app/assets/javascripts/spree/backend/payments/edit.js.coffee +8 -12
- data/app/assets/javascripts/spree/backend/product_picker.js +10 -8
- data/app/assets/javascripts/spree/backend/progress.coffee +0 -21
- data/app/assets/javascripts/spree/backend/promotions.js +50 -1
- data/app/assets/javascripts/spree/backend/select_payments.js.coffee +7 -0
- data/app/assets/javascripts/spree/backend/shipments.js.erb +10 -41
- data/app/assets/javascripts/spree/backend/spree-select2.js.erb +0 -15
- data/app/assets/javascripts/spree/backend/states.js +3 -3
- data/app/assets/javascripts/spree/backend/stock_movement.js.coffee +1 -2
- data/app/assets/javascripts/spree/backend/stock_transfer.js.coffee +3 -2
- data/app/assets/javascripts/spree/backend/taxon_autocomplete.js.erb +2 -4
- data/app/assets/javascripts/spree/backend/taxon_tree_menu.js.coffee +4 -4
- data/app/assets/javascripts/spree/backend/taxonomy.js.coffee +15 -34
- data/app/assets/javascripts/spree/backend/taxons.js.coffee +27 -8
- data/app/assets/javascripts/spree/backend/user_picker.js +2 -3
- data/app/assets/javascripts/spree/backend/variant_autocomplete.js.coffee.erb +1 -2
- data/app/assets/javascripts/spree/backend/variant_management.js.coffee +1 -2
- data/app/assets/javascripts/spree/backend.js +13 -15
- data/app/assets/stylesheets/spree/backend/components/_buttons.scss +37 -0
- data/app/assets/stylesheets/spree/backend/components/_filters.scss +25 -0
- data/app/assets/stylesheets/spree/backend/components/_icons.scss +257 -0
- data/app/assets/stylesheets/spree/backend/components/_labels.scss +49 -0
- data/app/assets/stylesheets/spree/backend/components/_main.scss +5 -0
- data/app/assets/stylesheets/spree/backend/components/_navigation.scss +10 -165
- data/app/assets/stylesheets/spree/backend/components/_page_header.scss +17 -0
- data/app/assets/stylesheets/spree/backend/components/_panels.scss +3 -0
- data/app/assets/stylesheets/spree/backend/components/_sidebar.scss +116 -20
- data/app/assets/stylesheets/spree/backend/components/_tables.scss +51 -0
- data/app/assets/stylesheets/spree/backend/components/_taxon_products_view.scss +70 -0
- data/app/assets/stylesheets/spree/backend/components/_variables.scss +12 -0
- data/app/assets/stylesheets/spree/backend/components/_wells.scss +3 -0
- data/app/assets/stylesheets/spree/backend/global/_variables.scss +37 -0
- data/app/assets/stylesheets/spree/backend/plugins/_jquery_ui.scss +109 -0
- data/app/{views/spree/admin/payments/source_forms/_check.html.erb → assets/stylesheets/spree/backend/plugins/_js_tree.scss} +0 -0
- data/app/assets/stylesheets/spree/backend/plugins/_select2.scss +84 -155
- data/app/assets/stylesheets/spree/backend/sections/_account.scss +16 -0
- data/app/assets/stylesheets/spree/backend/shared/_base.scss +15 -0
- data/app/assets/stylesheets/spree/backend/shared/_forms.scss +25 -287
- data/app/assets/stylesheets/spree/backend/shared/_typography.scss +5 -138
- data/app/assets/stylesheets/spree/backend/spree_admin.css.scss +26 -0
- data/app/assets/stylesheets/spree/backend.css +1 -7
- data/app/controllers/spree/admin/base_controller.rb +0 -2
- data/app/controllers/spree/admin/customer_returns_controller.rb +1 -1
- data/app/controllers/spree/admin/general_settings_controller.rb +5 -12
- data/app/controllers/spree/admin/images_controller.rb +33 -17
- data/app/controllers/spree/admin/log_entries_controller.rb +2 -2
- data/app/controllers/spree/admin/option_types_controller.rb +5 -3
- data/app/controllers/spree/admin/orders/customer_details_controller.rb +8 -8
- data/app/controllers/spree/admin/orders_controller.rb +4 -5
- data/app/controllers/spree/admin/payments_controller.rb +3 -3
- data/app/controllers/spree/admin/products_controller.rb +3 -6
- data/app/controllers/spree/admin/resource_controller.rb +1 -1
- data/app/controllers/spree/admin/root_controller.rb +1 -0
- data/app/controllers/spree/admin/search_controller.rb +12 -0
- data/app/controllers/spree/admin/state_changes_controller.rb +18 -0
- data/app/controllers/spree/admin/stock_locations_controller.rb +4 -13
- data/app/controllers/spree/admin/stock_transfers_controller.rb +6 -6
- data/app/controllers/spree/admin/tax_categories_controller.rb +0 -13
- data/app/controllers/spree/admin/taxonomies_controller.rb +1 -1
- data/app/controllers/spree/admin/taxons_controller.rb +53 -36
- data/app/controllers/spree/admin/users_controller.rb +44 -41
- data/app/controllers/spree/admin/variants_controller.rb +1 -1
- data/app/helpers/spree/admin/adjustments_helper.rb +0 -5
- data/app/helpers/spree/admin/base_helper.rb +41 -71
- data/app/helpers/spree/admin/navigation_helper.rb +96 -28
- data/app/helpers/spree/admin/orders_helper.rb +2 -2
- data/app/views/kaminari/_first_page.html.erb +11 -0
- data/app/views/kaminari/_gap.html.erb +8 -0
- data/app/views/kaminari/_last_page.html.erb +11 -0
- data/app/views/kaminari/_next_page.html.erb +15 -0
- data/app/views/kaminari/_page.html.erb +12 -0
- data/app/views/kaminari/_paginator.html.erb +21 -0
- data/app/views/kaminari/_prev_page.html.erb +15 -0
- data/app/views/spree/admin/adjustments/_adjustment.html.erb +10 -9
- data/app/views/spree/admin/adjustments/_adjustments_table.html.erb +19 -15
- data/app/views/spree/admin/adjustments/_form.html.erb +11 -15
- data/app/views/spree/admin/adjustments/edit.html.erb +9 -12
- data/app/views/spree/admin/adjustments/index.html.erb +19 -7
- data/app/views/spree/admin/adjustments/new.html.erb +7 -11
- data/app/views/spree/admin/countries/_form.html.erb +15 -19
- data/app/views/spree/admin/countries/edit.html.erb +4 -12
- data/app/views/spree/admin/countries/index.html.erb +6 -18
- data/app/views/spree/admin/countries/new.html.erb +3 -5
- data/app/views/spree/admin/customer_returns/_reimbursements_table.html.erb +4 -4
- data/app/views/spree/admin/customer_returns/_return_item_decision.html.erb +9 -10
- data/app/views/spree/admin/customer_returns/_return_item_selection.html.erb +5 -3
- data/app/views/spree/admin/customer_returns/edit.html.erb +17 -21
- data/app/views/spree/admin/customer_returns/index.html.erb +12 -16
- data/app/views/spree/admin/customer_returns/new.html.erb +29 -20
- data/app/views/spree/admin/general_settings/edit.html.erb +101 -90
- data/app/views/spree/admin/images/_form.html.erb +12 -12
- data/app/views/spree/admin/images/edit.html.erb +23 -21
- data/app/views/spree/admin/images/index.html.erb +25 -30
- data/app/views/spree/admin/images/new.html.erb +13 -11
- data/app/views/spree/admin/inventory_units/adjust.html.erb +29 -0
- data/app/views/spree/admin/log_entries/index.html.erb +9 -7
- data/app/views/spree/admin/option_types/_form.html.erb +10 -10
- data/app/views/spree/admin/option_types/_option_value_fields.html.erb +8 -10
- data/app/views/spree/admin/option_types/edit.html.erb +28 -23
- data/app/views/spree/admin/option_types/index.html.erb +16 -22
- data/app/views/spree/admin/option_types/new.html.erb +4 -3
- data/app/views/spree/admin/orders/_add_line_item.html.erb +9 -10
- data/app/views/spree/admin/orders/_add_product.html.erb +11 -9
- data/app/views/spree/admin/orders/_adjustments.html.erb +21 -7
- data/app/views/spree/admin/orders/_form.html.erb +23 -10
- data/app/views/spree/admin/orders/_line_item.html.erb +18 -6
- data/app/views/spree/admin/orders/_line_items.html.erb +45 -45
- data/app/views/spree/admin/orders/_line_items_edit_form.html.erb +10 -11
- data/app/views/spree/admin/orders/_risk_analysis.html.erb +13 -13
- data/app/views/spree/admin/orders/_shipment.html.erb +31 -39
- data/app/views/spree/admin/orders/_shipment_manifest.html.erb +23 -17
- data/app/views/spree/admin/orders/cart.html.erb +14 -15
- data/app/views/spree/admin/orders/customer_details/_form.html.erb +73 -52
- data/app/views/spree/admin/orders/customer_details/edit.html.erb +19 -15
- data/app/views/spree/admin/orders/edit.html.erb +12 -9
- data/app/views/spree/admin/orders/index.html.erb +145 -84
- data/app/views/spree/admin/payment_methods/_form.html.erb +26 -30
- data/app/views/spree/admin/payment_methods/edit.html.erb +5 -14
- data/app/views/spree/admin/payment_methods/index.html.erb +14 -29
- data/app/views/spree/admin/payment_methods/new.html.erb +4 -12
- data/app/views/spree/admin/payments/_capture_events.html.erb +2 -2
- data/app/views/spree/admin/payments/_form.html.erb +27 -30
- data/app/views/spree/admin/payments/_list.html.erb +20 -16
- data/app/views/spree/admin/payments/credit.html.erb +2 -2
- data/app/views/spree/admin/payments/index.html.erb +15 -13
- data/app/views/spree/admin/payments/new.html.erb +10 -11
- data/app/views/spree/admin/payments/show.html.erb +12 -9
- data/app/views/spree/admin/payments/source_forms/_gateway.html.erb +43 -47
- data/app/views/spree/admin/payments/source_views/_gateway.html.erb +19 -19
- data/app/views/spree/admin/product_properties/_product_property_fields.html.erb +5 -5
- data/app/views/spree/admin/product_properties/index.html.erb +5 -17
- data/app/views/spree/admin/products/_add_stock_form.html.erb +34 -25
- data/app/views/spree/admin/products/_autocomplete.js.erb +18 -7
- data/app/views/spree/admin/products/_form.html.erb +145 -150
- data/app/views/spree/admin/products/_properties_form.erb +2 -2
- data/app/views/spree/admin/products/edit.html.erb +3 -8
- data/app/views/spree/admin/products/index.html.erb +42 -63
- data/app/views/spree/admin/products/new.html.erb +29 -33
- data/app/views/spree/admin/products/stock.html.erb +67 -82
- data/app/views/spree/admin/promotion_actions/create.js.erb +1 -2
- data/app/views/spree/admin/promotion_actions/destroy.js.erb +1 -1
- data/app/views/spree/admin/promotion_categories/_form.html.erb +9 -9
- data/app/views/spree/admin/promotion_categories/edit.html.erb +2 -4
- data/app/views/spree/admin/promotion_categories/index.html.erb +27 -26
- data/app/views/spree/admin/promotion_categories/new.html.erb +1 -3
- data/app/views/spree/admin/promotion_rules/create.js.erb +1 -1
- data/app/views/spree/admin/promotion_rules/destroy.js.erb +1 -1
- data/app/views/spree/admin/promotions/_actions.html.erb +20 -17
- data/app/views/spree/admin/promotions/_form.html.erb +40 -39
- data/app/views/spree/admin/promotions/_promotion_action.html.erb +6 -6
- data/app/views/spree/admin/promotions/_promotion_rule.html.erb +7 -6
- data/app/views/spree/admin/promotions/_rules.html.erb +36 -35
- data/app/views/spree/admin/promotions/actions/_create_adjustment.html.erb +25 -23
- data/app/views/spree/admin/promotions/actions/_create_item_adjustments.html.erb +23 -21
- data/app/views/spree/admin/promotions/actions/_create_line_items.html.erb +16 -16
- data/app/views/spree/admin/promotions/calculators/_default_fields.html.erb +8 -6
- data/app/views/spree/admin/promotions/calculators/tiered_flat_rate/_fields.html.erb +29 -24
- data/app/views/spree/admin/promotions/calculators/tiered_percent/_fields.html.erb +29 -23
- data/app/views/spree/admin/promotions/edit.html.erb +16 -11
- data/app/views/spree/admin/promotions/index.html.erb +34 -58
- data/app/views/spree/admin/promotions/new.html.erb +4 -6
- data/app/views/spree/admin/promotions/rules/_item_total.html.erb +11 -7
- data/app/views/spree/admin/promotions/rules/_landing_page.html.erb +9 -5
- data/app/views/spree/admin/promotions/rules/_option_value.html.erb +42 -0
- data/app/views/spree/admin/promotions/rules/_product.html.erb +9 -8
- data/app/views/spree/admin/promotions/rules/_taxon.html.erb +9 -8
- data/app/views/spree/admin/promotions/rules/_user.html.erb +5 -3
- data/app/views/spree/admin/properties/_form.html.erb +9 -9
- data/app/views/spree/admin/properties/edit.html.erb +3 -9
- data/app/views/spree/admin/properties/index.html.erb +42 -52
- data/app/views/spree/admin/properties/new.html.erb +10 -9
- data/app/views/spree/admin/prototypes/_form.html.erb +25 -28
- data/app/views/spree/admin/prototypes/_prototypes.html.erb +4 -8
- data/app/views/spree/admin/prototypes/available.js.erb +1 -1
- data/app/views/spree/admin/prototypes/edit.html.erb +3 -11
- data/app/views/spree/admin/prototypes/index.html.erb +23 -36
- data/app/views/spree/admin/prototypes/new.html.erb +8 -7
- data/app/views/spree/admin/prototypes/show.html.erb +15 -18
- data/app/views/spree/admin/refund_reasons/edit.html.erb +2 -2
- data/app/views/spree/admin/refund_reasons/index.html.erb +2 -2
- data/app/views/spree/admin/refund_reasons/new.html.erb +1 -1
- data/app/views/spree/admin/refunds/edit.html.erb +14 -18
- data/app/views/spree/admin/refunds/new.html.erb +19 -27
- data/app/views/spree/admin/reimbursement_types/index.html.erb +6 -7
- data/app/views/spree/admin/reimbursements/edit.html.erb +25 -31
- data/app/views/spree/admin/reimbursements/index.html.erb +4 -10
- data/app/views/spree/admin/reimbursements/show.html.erb +32 -36
- data/app/views/spree/admin/reports/index.html.erb +4 -4
- data/app/views/spree/admin/reports/sales_total.html.erb +6 -11
- data/app/views/spree/admin/return_authorization_reasons/edit.html.erb +0 -0
- data/app/views/spree/admin/return_authorization_reasons/index.html.erb +2 -2
- data/app/views/spree/admin/return_authorization_reasons/new.html.erb +0 -0
- data/app/views/spree/admin/return_authorizations/_form.html.erb +20 -20
- data/app/views/spree/admin/return_authorizations/edit.html.erb +6 -6
- data/app/views/spree/admin/return_authorizations/index.html.erb +12 -12
- data/app/views/spree/admin/return_authorizations/new.html.erb +6 -10
- data/app/views/spree/admin/search/products.rabl +9 -0
- data/app/views/spree/admin/search/users.rabl +21 -21
- data/app/views/spree/admin/shared/_address_form.html.erb +22 -22
- data/app/views/spree/admin/shared/_alert.html.erb +8 -5
- data/app/views/spree/admin/shared/_calculator_fields.html.erb +13 -8
- data/app/views/spree/admin/shared/_content_header.html.erb +19 -16
- data/app/views/spree/admin/shared/_edit_resource_links.html.erb +3 -3
- data/app/views/spree/admin/shared/_error_messages.html.erb +12 -0
- data/app/views/spree/admin/shared/_head.html.erb +4 -8
- data/app/views/spree/admin/shared/_header.html.erb +27 -8
- data/app/views/spree/admin/shared/_index_table_options.html.erb +23 -0
- data/app/views/spree/admin/shared/_main_menu.html.erb +35 -0
- data/app/views/spree/admin/shared/_new_resource_links.html.erb +3 -3
- data/app/views/spree/admin/shared/_order_summary.html.erb +121 -48
- data/app/views/spree/admin/shared/_order_tabs.html.erb +55 -7
- data/app/views/spree/admin/shared/_product_tabs.html.erb +19 -25
- data/app/views/spree/admin/shared/_refunds.html.erb +9 -9
- data/app/views/spree/admin/shared/_report_criteria.html.erb +4 -4
- data/app/views/spree/admin/shared/_report_order_criteria.html.erb +12 -12
- data/app/views/spree/admin/shared/_sidebar.html.erb +1 -6
- data/app/views/spree/admin/shared/_table_filter.html.erb +21 -5
- data/app/views/spree/admin/shared/named_types/_edit.html.erb +6 -7
- data/app/views/spree/admin/shared/named_types/_form.html.erb +10 -14
- data/app/views/spree/admin/shared/named_types/_index.html.erb +6 -17
- data/app/views/spree/admin/shared/named_types/_new.html.erb +5 -5
- data/app/views/spree/admin/shared/sub_menu/_configuration.html.erb +21 -0
- data/app/views/spree/admin/shared/sub_menu/_product.html.erb +8 -0
- data/app/views/spree/admin/shared/sub_menu/_promotion.html.erb +4 -0
- data/app/views/spree/admin/shipping_categories/_form.html.erb +2 -2
- data/app/views/spree/admin/shipping_categories/edit.html.erb +4 -14
- data/app/views/spree/admin/shipping_categories/index.html.erb +24 -32
- data/app/views/spree/admin/shipping_categories/new.html.erb +2 -10
- data/app/views/spree/admin/shipping_methods/_form.html.erb +88 -67
- data/app/views/spree/admin/shipping_methods/edit.html.erb +6 -19
- data/app/views/spree/admin/shipping_methods/index.html.erb +13 -25
- data/app/views/spree/admin/shipping_methods/new.html.erb +2 -12
- data/app/views/spree/admin/state_changes/index.html.erb +42 -0
- data/app/views/spree/admin/states/_form.html.erb +6 -6
- data/app/views/spree/admin/states/_state_list.html.erb +6 -11
- data/app/views/spree/admin/states/edit.html.erb +3 -11
- data/app/views/spree/admin/states/index.html.erb +5 -9
- data/app/views/spree/admin/states/new.html.erb +1 -4
- data/app/views/spree/admin/states/new.js.erb +2 -2
- data/app/views/spree/admin/stock_locations/_form.html.erb +51 -45
- data/app/views/spree/admin/stock_locations/_transfer_stock_form.html.erb +15 -15
- data/app/views/spree/admin/stock_locations/edit.html.erb +4 -6
- data/app/views/spree/admin/stock_locations/index.html.erb +12 -26
- data/app/views/spree/admin/stock_locations/new.html.erb +3 -5
- data/app/views/spree/admin/stock_movements/_form.html.erb +10 -12
- data/app/views/spree/admin/stock_movements/edit.html.erb +4 -4
- data/app/views/spree/admin/stock_movements/index.html.erb +9 -15
- data/app/views/spree/admin/stock_movements/new.html.erb +3 -3
- data/app/views/spree/admin/stock_transfers/_stock_movements.html.erb +17 -22
- data/app/views/spree/admin/stock_transfers/index.html.erb +36 -49
- data/app/views/spree/admin/stock_transfers/new.html.erb +73 -77
- data/app/views/spree/admin/stock_transfers/show.html.erb +21 -29
- data/app/views/spree/admin/tax_categories/_form.html.erb +19 -27
- data/app/views/spree/admin/tax_categories/edit.html.erb +4 -6
- data/app/views/spree/admin/tax_categories/index.html.erb +13 -26
- data/app/views/spree/admin/tax_categories/new.html.erb +3 -6
- data/app/views/spree/admin/tax_categories/show.html.erb +1 -1
- data/app/views/spree/admin/tax_rates/_form.html.erb +34 -25
- data/app/views/spree/admin/tax_rates/edit.html.erb +4 -15
- data/app/views/spree/admin/tax_rates/index.html.erb +18 -32
- data/app/views/spree/admin/tax_rates/new.html.erb +2 -14
- data/app/views/spree/admin/taxonomies/_form.html.erb +5 -5
- data/app/views/spree/admin/taxonomies/_js_head.html.erb +0 -0
- data/app/views/spree/admin/taxonomies/_list.html.erb +9 -12
- data/app/views/spree/admin/taxonomies/edit.erb +11 -22
- data/app/views/spree/admin/taxonomies/index.html.erb +9 -15
- data/app/views/spree/admin/taxonomies/new.html.erb +4 -16
- data/app/views/spree/admin/taxons/_form.html.erb +38 -38
- data/app/views/spree/admin/taxons/_taxon_table.html.erb +2 -2
- data/app/views/spree/admin/taxons/edit.html.erb +5 -13
- data/app/views/spree/admin/taxons/index.html.erb +6 -13
- data/app/views/spree/admin/trackers/_form.html.erb +17 -23
- data/app/views/spree/admin/trackers/edit.html.erb +4 -14
- data/app/views/spree/admin/trackers/index.html.erb +9 -15
- data/app/views/spree/admin/trackers/new.html.erb +2 -10
- data/app/views/spree/admin/users/_addresses_form.html.erb +33 -17
- data/app/views/spree/admin/users/_form.html.erb +17 -17
- data/app/views/spree/admin/users/_lifetime_stats.html.erb +26 -0
- data/app/views/spree/admin/users/_sidebar.html.erb +14 -34
- data/app/views/spree/admin/users/_user_page_actions.html.erb +2 -6
- data/app/views/spree/admin/users/addresses.html.erb +8 -7
- data/app/views/spree/admin/users/edit.html.erb +55 -38
- data/app/views/spree/admin/users/index.html.erb +44 -30
- data/app/views/spree/admin/users/items.html.erb +13 -24
- data/app/views/spree/admin/users/new.html.erb +1 -7
- data/app/views/spree/admin/users/orders.html.erb +11 -17
- data/app/views/spree/admin/variants/_autocomplete.js.erb +13 -15
- data/app/views/spree/admin/variants/_autocomplete_line_items_stock.js.erb +41 -44
- data/app/views/spree/admin/variants/_autocomplete_stock.js.erb +46 -51
- data/app/views/spree/admin/variants/_form.html.erb +34 -34
- data/app/views/spree/admin/variants/_split.js.erb +8 -4
- data/app/views/spree/admin/variants/edit.html.erb +2 -4
- data/app/views/spree/admin/variants/index.html.erb +14 -33
- data/app/views/spree/admin/variants/new.html.erb +8 -6
- data/app/views/spree/admin/variants/new.js.erb +1 -1
- data/app/views/spree/admin/zones/_country_members.html.erb +14 -8
- data/app/views/spree/admin/zones/_form.html.erb +42 -31
- data/app/views/spree/admin/zones/_state_members.html.erb +14 -8
- data/app/views/spree/admin/zones/edit.html.erb +3 -11
- data/app/views/spree/admin/zones/index.html.erb +9 -19
- data/app/views/spree/admin/zones/new.html.erb +2 -13
- data/app/views/spree/layouts/admin.html.erb +63 -36
- data/config/initializers/assets.rb +1 -1
- data/config/routes.rb +4 -1
- data/lib/spree/backend/engine.rb +3 -0
- data/lib/spree_backend.rb +2 -0
- data/vendor/assets/javascripts/jquery.cookie.js +115 -39
- data/vendor/assets/javascripts/modernizr.js +3 -3
- data/vendor/assets/javascripts/underscore-min.js +6 -0
- data/vendor/assets/javascripts/underscore-min.map +1 -0
- data/vendor/assets/javascripts/velocity.js +3831 -0
- data/vendor/assets/stylesheets/animate.css +3158 -0
- metadata +85 -96
- data/app/assets/javascripts/spree/backend/images/index.js.coffee +0 -16
- data/app/assets/javascripts/spree/backend/images/new.js.coffee +0 -7
- data/app/assets/javascripts/spree/backend/underscore-min.js +0 -1227
- data/app/assets/stylesheets/spree/backend/components/_actions.scss +0 -31
- data/app/assets/stylesheets/spree/backend/components/_date-picker.scss +0 -159
- data/app/assets/stylesheets/spree/backend/components/_messages.scss +0 -54
- data/app/assets/stylesheets/spree/backend/components/_pagination.scss +0 -17
- data/app/assets/stylesheets/spree/backend/components/_product_autocomplete.scss +0 -29
- data/app/assets/stylesheets/spree/backend/components/_progress.scss +0 -35
- data/app/assets/stylesheets/spree/backend/components/_states.scss +0 -34
- data/app/assets/stylesheets/spree/backend/components/_table-filter.scss +0 -14
- data/app/assets/stylesheets/spree/backend/globals/_functions.scss +0 -25
- data/app/assets/stylesheets/spree/backend/globals/_mixins.scss +0 -25
- data/app/assets/stylesheets/spree/backend/globals/_variables.scss +0 -171
- data/app/assets/stylesheets/spree/backend/globals/_variables_override.scss +0 -7
- data/app/assets/stylesheets/spree/backend/hacks/_ie.scss +0 -72
- data/app/assets/stylesheets/spree/backend/hacks/_mozilla.scss +0 -33
- data/app/assets/stylesheets/spree/backend/hacks/_opera.scss +0 -17
- data/app/assets/stylesheets/spree/backend/plugins/_jstree.scss +0 -135
- data/app/assets/stylesheets/spree/backend/plugins/_powertip.scss +0 -86
- data/app/assets/stylesheets/spree/backend/plugins/_token-input.scss +0 -110
- data/app/assets/stylesheets/spree/backend/sections/_adjustments_table.scss +0 -8
- data/app/assets/stylesheets/spree/backend/sections/_alerts.scss +0 -27
- data/app/assets/stylesheets/spree/backend/sections/_bulk_transfer.scss +0 -8
- data/app/assets/stylesheets/spree/backend/sections/_edit_checkouts.scss +0 -72
- data/app/assets/stylesheets/spree/backend/sections/_image_settings.scss +0 -3
- data/app/assets/stylesheets/spree/backend/sections/_log_entries.scss +0 -17
- data/app/assets/stylesheets/spree/backend/sections/_orders.scss +0 -64
- data/app/assets/stylesheets/spree/backend/sections/_overview.scss +0 -86
- data/app/assets/stylesheets/spree/backend/sections/_products.scss +0 -123
- data/app/assets/stylesheets/spree/backend/sections/_promotions.scss +0 -119
- data/app/assets/stylesheets/spree/backend/sections/_return_authorizations.scss +0 -24
- data/app/assets/stylesheets/spree/backend/sections/_tax_zones.scss +0 -15
- data/app/assets/stylesheets/spree/backend/sections/_taxons.scss +0 -21
- data/app/assets/stylesheets/spree/backend/sections/_users.scss +0 -5
- data/app/assets/stylesheets/spree/backend/shared/_icons.scss +0 -53
- data/app/assets/stylesheets/spree/backend/shared/_layout.scss +0 -99
- data/app/assets/stylesheets/spree/backend/shared/_tables.scss +0 -214
- data/app/assets/stylesheets/spree/backend/spree_admin.scss +0 -45
- data/app/views/spree/admin/line_items/create.js.erb +0 -1
- data/app/views/spree/admin/line_items/destroy.js.erb +0 -1
- data/app/views/spree/admin/option_types/new.js.erb +0 -2
- data/app/views/spree/admin/payments/_bill_address_form.html.erb +0 -9
- data/app/views/spree/admin/payments/source_views/_check.html.erb +0 -0
- data/app/views/spree/admin/products/new.js.erb +0 -7
- data/app/views/spree/admin/promotions/_tab.html.erb +0 -1
- data/app/views/spree/admin/promotions/rules/_first_order.html.erb +0 -0
- data/app/views/spree/admin/promotions/rules/_one_use_per_user.html.erb +0 -0
- data/app/views/spree/admin/promotions/rules/_user_logged_in.html.erb +0 -0
- data/app/views/spree/admin/properties/filtered.html.erb +0 -1
- data/app/views/spree/admin/properties/new.js.erb +0 -2
- data/app/views/spree/admin/prototypes/new.js.erb +0 -5
- data/app/views/spree/admin/shared/_address.html.erb +0 -6
- data/app/views/spree/admin/shared/_configuration_menu.html.erb +0 -28
- data/app/views/spree/admin/shared/_menu.html.erb +0 -9
- data/app/views/spree/admin/shared/_order_submenu.html.erb +0 -49
- data/app/views/spree/admin/shared/_product_sub_menu.html.erb +0 -10
- data/app/views/spree/admin/shared/_promotion_sub_menu.html.erb +0 -6
- data/app/views/spree/admin/shared/_show_resource_links.html.erb +0 -5
- data/app/views/spree/admin/shared/_sub_menu.html.erb +0 -9
- data/app/views/spree/admin/shared/_tabs.html.erb +0 -21
- data/app/views/spree/admin/taxonomies/_taxon.html.erb +0 -12
- data/app/views/spree/admin/taxons/search.rabl +0 -5
- data/app/views/spree/admin/variants/update.js.erb +0 -1
- 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 +0 -129
- data/vendor/assets/javascripts/equalize.js +0 -41
- data/vendor/assets/javascripts/jquery.adaptivemenu.js +0 -60
- data/vendor/assets/javascripts/jquery.alerts/jquery.alerts.js +0 -235
- data/vendor/assets/javascripts/jquery.delayedobserver.js +0 -35
- data/vendor/assets/javascripts/jquery.powertip.js +0 -796
- data/vendor/assets/javascripts/jquery.vAlign.js +0 -11
- data/vendor/assets/javascripts/responsive-tables.js +0 -42
- data/vendor/assets/javascripts/spin.js +0 -379
- data/vendor/assets/javascripts/trunk8.js +0 -369
- data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.css.erb +0 -57
- data/vendor/assets/stylesheets/jquery.alerts/jquery.alerts.spree.css +0 -29
- data/vendor/assets/stylesheets/jquery.powertip.css +0 -85
- data/vendor/assets/stylesheets/responsive-tables.css +0 -21
@@ -1,11 +0,0 @@
|
|
1
|
-
(function ($) {
|
2
|
-
// VERTICALLY ALIGN FUNCTION
|
3
|
-
$.fn.vAlign = function() {
|
4
|
-
return this.each(function(i){
|
5
|
-
var ah = $(this).height();
|
6
|
-
var ph = $(this).parent().height();
|
7
|
-
var mh = Math.ceil((ph-ah) / 2);
|
8
|
-
$(this).css('margin-top', mh);
|
9
|
-
});
|
10
|
-
};
|
11
|
-
})(jQuery);
|
@@ -1,42 +0,0 @@
|
|
1
|
-
$(document).ready(function() {
|
2
|
-
var switched = false;
|
3
|
-
var updateTables = function() {
|
4
|
-
if (($(window).width() < 767) && !switched ){
|
5
|
-
switched = true;
|
6
|
-
$("table.responsive").each(function(i, element) {
|
7
|
-
splitTable($(element));
|
8
|
-
});
|
9
|
-
return true;
|
10
|
-
}
|
11
|
-
else if (switched && ($(window).width() > 767)) {
|
12
|
-
switched = false;
|
13
|
-
$("table.responsive").each(function(i, element) {
|
14
|
-
unsplitTable($(element));
|
15
|
-
});
|
16
|
-
}
|
17
|
-
};
|
18
|
-
|
19
|
-
$(window).load(updateTables);
|
20
|
-
$(window).bind("resize", updateTables);
|
21
|
-
|
22
|
-
|
23
|
-
function splitTable(original)
|
24
|
-
{
|
25
|
-
original.wrap("<div class='table-wrapper' />");
|
26
|
-
|
27
|
-
var copy = original.clone();
|
28
|
-
copy.find("td:not(:first-child), th:not(:first-child)").css("display", "none");
|
29
|
-
copy.removeClass("responsive");
|
30
|
-
|
31
|
-
original.closest(".table-wrapper").append(copy);
|
32
|
-
copy.wrap("<div class='pinned' />");
|
33
|
-
original.wrap("<div class='scrollable' />");
|
34
|
-
}
|
35
|
-
|
36
|
-
function unsplitTable(original) {
|
37
|
-
original.closest(".table-wrapper").find(".pinned").remove();
|
38
|
-
original.unwrap();
|
39
|
-
original.unwrap();
|
40
|
-
}
|
41
|
-
|
42
|
-
});
|
@@ -1,379 +0,0 @@
|
|
1
|
-
|
2
|
-
//fgnass.github.com/spin.js#v1.3.2
|
3
|
-
|
4
|
-
/**
|
5
|
-
* Copyright (c) 2011-2013 Felix Gnass
|
6
|
-
* Licensed under the MIT license
|
7
|
-
*/ (function(root, factory) {
|
8
|
-
|
9
|
-
/* CommonJS */
|
10
|
-
if (typeof exports == 'object') module.exports = factory()
|
11
|
-
|
12
|
-
/* AMD module */
|
13
|
-
else if (typeof define == 'function' && define.amd) define(factory)
|
14
|
-
|
15
|
-
/* Browser global */
|
16
|
-
else root.Spinner = factory()
|
17
|
-
}
|
18
|
-
(this, function() {
|
19
|
-
"use strict";
|
20
|
-
|
21
|
-
var prefixes = ['webkit', 'Moz', 'ms', 'O'] /* Vendor prefixes */
|
22
|
-
,
|
23
|
-
animations = {} /* Animation rules keyed by their name */
|
24
|
-
,
|
25
|
-
useCssAnimations /* Whether to use CSS animations or setTimeout */
|
26
|
-
|
27
|
-
/**
|
28
|
-
* Utility function to create elements. If no tag name is given,
|
29
|
-
* a DIV is created. Optionally properties can be passed.
|
30
|
-
*/
|
31
|
-
function createEl(tag, prop) {
|
32
|
-
var el = document.createElement(tag || 'div'),
|
33
|
-
n
|
34
|
-
|
35
|
-
for (n in prop) el[n] = prop[n]
|
36
|
-
return el
|
37
|
-
}
|
38
|
-
|
39
|
-
/**
|
40
|
-
* Appends children and returns the parent.
|
41
|
-
*/
|
42
|
-
function ins(parent /* child1, child2, ...*/ ) {
|
43
|
-
for (var i = 1, n = arguments.length; i < n; i++)
|
44
|
-
parent.appendChild(arguments[i])
|
45
|
-
|
46
|
-
return parent
|
47
|
-
}
|
48
|
-
|
49
|
-
/**
|
50
|
-
* Insert a new stylesheet to hold the @keyframe or VML rules.
|
51
|
-
*/
|
52
|
-
var sheet = (function() {
|
53
|
-
var el = createEl('style', {
|
54
|
-
type: 'text/css'
|
55
|
-
})
|
56
|
-
ins(document.getElementsByTagName('head')[0], el)
|
57
|
-
return el.sheet || el.styleSheet
|
58
|
-
}())
|
59
|
-
|
60
|
-
/**
|
61
|
-
* Creates an opacity keyframe animation rule and returns its name.
|
62
|
-
* Since most mobile Webkits have timing issues with animation-delay,
|
63
|
-
* we create separate rules for each line/segment.
|
64
|
-
*/
|
65
|
-
function addAnimation(alpha, trail, i, lines) {
|
66
|
-
var name = ['opacity', trail, ~~ (alpha * 100), i, lines].join('-'),
|
67
|
-
start = 0.01 + i / lines * 100,
|
68
|
-
z = Math.max(1 - (1 - alpha) / trail * (100 - start), alpha),
|
69
|
-
prefix = useCssAnimations.substring(0, useCssAnimations.indexOf('Animation')).toLowerCase(),
|
70
|
-
pre = prefix && '-' + prefix + '-' || ''
|
71
|
-
|
72
|
-
if (!animations[name]) {
|
73
|
-
sheet.insertRule('@' + pre + 'keyframes ' + name + '{' + '0%{opacity:' + z + '}' + start + '%{opacity:' + alpha + '}' + (start + 0.01) + '%{opacity:1}' + (start + trail) % 100 + '%{opacity:' + alpha + '}' + '100%{opacity:' + z + '}' + '}', sheet.cssRules.length)
|
74
|
-
|
75
|
-
animations[name] = 1
|
76
|
-
}
|
77
|
-
|
78
|
-
return name
|
79
|
-
}
|
80
|
-
|
81
|
-
/**
|
82
|
-
* Tries various vendor prefixes and returns the first supported property.
|
83
|
-
*/
|
84
|
-
function vendor(el, prop) {
|
85
|
-
var s = el.style,
|
86
|
-
pp, i
|
87
|
-
|
88
|
-
prop = prop.charAt(0).toUpperCase() + prop.slice(1)
|
89
|
-
for (i = 0; i < prefixes.length; i++) {
|
90
|
-
pp = prefixes[i] + prop
|
91
|
-
if (s[pp] !== undefined) return pp
|
92
|
-
}
|
93
|
-
if (s[prop] !== undefined) return prop
|
94
|
-
}
|
95
|
-
|
96
|
-
/**
|
97
|
-
* Sets multiple style properties at once.
|
98
|
-
*/
|
99
|
-
function css(el, prop) {
|
100
|
-
for (var n in prop)
|
101
|
-
el.style[vendor(el, n) || n] = prop[n]
|
102
|
-
|
103
|
-
return el
|
104
|
-
}
|
105
|
-
|
106
|
-
/**
|
107
|
-
* Fills in default values.
|
108
|
-
*/
|
109
|
-
function merge(obj) {
|
110
|
-
for (var i = 1; i < arguments.length; i++) {
|
111
|
-
var def = arguments[i]
|
112
|
-
for (var n in def)
|
113
|
-
if (obj[n] === undefined) obj[n] = def[n]
|
114
|
-
}
|
115
|
-
return obj
|
116
|
-
}
|
117
|
-
|
118
|
-
/**
|
119
|
-
* Returns the absolute page-offset of the given element.
|
120
|
-
*/
|
121
|
-
function pos(el) {
|
122
|
-
var o = {
|
123
|
-
x: el.offsetLeft,
|
124
|
-
y: el.offsetTop
|
125
|
-
}
|
126
|
-
while ((el = el.offsetParent))
|
127
|
-
o.x += el.offsetLeft, o.y += el.offsetTop
|
128
|
-
|
129
|
-
return o
|
130
|
-
}
|
131
|
-
|
132
|
-
/**
|
133
|
-
* Returns the line color from the given string or array.
|
134
|
-
*/
|
135
|
-
function getColor(color, idx) {
|
136
|
-
return typeof color == 'string' ? color : color[idx % color.length]
|
137
|
-
}
|
138
|
-
|
139
|
-
// Built-in defaults
|
140
|
-
|
141
|
-
var defaults = {
|
142
|
-
lines: 12, // The number of lines to draw
|
143
|
-
length: 7, // The length of each line
|
144
|
-
width: 5, // The line thickness
|
145
|
-
radius: 10, // The radius of the inner circle
|
146
|
-
rotate: 0, // Rotation offset
|
147
|
-
corners: 1, // Roundness (0..1)
|
148
|
-
color: '#000', // #rgb or #rrggbb
|
149
|
-
direction: 1, // 1: clockwise, -1: counterclockwise
|
150
|
-
speed: 1, // Rounds per second
|
151
|
-
trail: 100, // Afterglow percentage
|
152
|
-
opacity: 1 / 4, // Opacity of the lines
|
153
|
-
fps: 20, // Frames per second when using setTimeout()
|
154
|
-
zIndex: 2e9, // Use a high z-index by default
|
155
|
-
className: 'spinner', // CSS class to assign to the element
|
156
|
-
top: 'auto', // center vertically
|
157
|
-
left: 'auto', // center horizontally
|
158
|
-
position: 'relative' // element position
|
159
|
-
}
|
160
|
-
|
161
|
-
/** The constructor */
|
162
|
-
function Spinner(o) {
|
163
|
-
if (typeof this == 'undefined') return new Spinner(o)
|
164
|
-
this.opts = merge(o || {}, Spinner.defaults, defaults)
|
165
|
-
}
|
166
|
-
|
167
|
-
// Global defaults that override the built-ins:
|
168
|
-
Spinner.defaults = {}
|
169
|
-
|
170
|
-
merge(Spinner.prototype, {
|
171
|
-
|
172
|
-
/**
|
173
|
-
* Adds the spinner to the given target element. If this instance is already
|
174
|
-
* spinning, it is automatically removed from its previous target b calling
|
175
|
-
* stop() internally.
|
176
|
-
*/
|
177
|
-
spin: function(target) {
|
178
|
-
this.stop()
|
179
|
-
|
180
|
-
var self = this,
|
181
|
-
o = self.opts,
|
182
|
-
el = self.el = css(createEl(0, {
|
183
|
-
className: o.className
|
184
|
-
}), {
|
185
|
-
position: o.position,
|
186
|
-
width: 0,
|
187
|
-
zIndex: o.zIndex
|
188
|
-
}),
|
189
|
-
mid = o.radius + o.length + o.width,
|
190
|
-
ep // element position
|
191
|
-
,
|
192
|
-
tp // target position
|
193
|
-
|
194
|
-
if (target) {
|
195
|
-
target.insertBefore(el, target.firstChild || null)
|
196
|
-
tp = pos(target)
|
197
|
-
ep = pos(el)
|
198
|
-
css(el, {
|
199
|
-
left: (o.left == 'auto' ? tp.x - ep.x + (target.offsetWidth >> 1) : parseInt(o.left, 10) + mid) + 'px',
|
200
|
-
top: (o.top == 'auto' ? tp.y - ep.y + (target.offsetHeight >> 1) : parseInt(o.top, 10) + mid) + 'px'
|
201
|
-
})
|
202
|
-
}
|
203
|
-
|
204
|
-
el.setAttribute('role', 'progressbar')
|
205
|
-
self.lines(el, self.opts)
|
206
|
-
|
207
|
-
if (!useCssAnimations) {
|
208
|
-
// No CSS animation support, use setTimeout() instead
|
209
|
-
var i = 0,
|
210
|
-
start = (o.lines - 1) * (1 - o.direction) / 2,
|
211
|
-
alpha, fps = o.fps,
|
212
|
-
f = fps / o.speed,
|
213
|
-
ostep = (1 - o.opacity) / (f * o.trail / 100),
|
214
|
-
astep = f / o.lines
|
215
|
-
|
216
|
-
;
|
217
|
-
(function anim() {
|
218
|
-
i++;
|
219
|
-
for (var j = 0; j < o.lines; j++) {
|
220
|
-
alpha = Math.max(1 - (i + (o.lines - j) * astep) % f * ostep, o.opacity)
|
221
|
-
|
222
|
-
self.opacity(el, j * o.direction + start, alpha, o)
|
223
|
-
}
|
224
|
-
self.timeout = self.el && setTimeout(anim, ~~ (1000 / fps))
|
225
|
-
})()
|
226
|
-
}
|
227
|
-
return self
|
228
|
-
},
|
229
|
-
|
230
|
-
/**
|
231
|
-
* Stops and removes the Spinner.
|
232
|
-
*/
|
233
|
-
stop: function() {
|
234
|
-
var el = this.el
|
235
|
-
if (el) {
|
236
|
-
clearTimeout(this.timeout)
|
237
|
-
if (el.parentNode) el.parentNode.removeChild(el)
|
238
|
-
this.el = undefined
|
239
|
-
}
|
240
|
-
return this
|
241
|
-
},
|
242
|
-
|
243
|
-
/**
|
244
|
-
* Internal method that draws the individual lines. Will be overwritten
|
245
|
-
* in VML fallback mode below.
|
246
|
-
*/
|
247
|
-
lines: function(el, o) {
|
248
|
-
var i = 0,
|
249
|
-
start = (o.lines - 1) * (1 - o.direction) / 2,
|
250
|
-
seg
|
251
|
-
|
252
|
-
function fill(color, shadow) {
|
253
|
-
return css(createEl(), {
|
254
|
-
position: 'absolute',
|
255
|
-
width: (o.length + o.width) + 'px',
|
256
|
-
height: o.width + 'px',
|
257
|
-
background: color,
|
258
|
-
boxShadow: shadow,
|
259
|
-
transformOrigin: 'left',
|
260
|
-
transform: 'rotate(' + ~~ (360 / o.lines * i + o.rotate) + 'deg) translate(' + o.radius + 'px' + ',0)',
|
261
|
-
borderRadius: (o.corners * o.width >> 1) + 'px'
|
262
|
-
})
|
263
|
-
}
|
264
|
-
|
265
|
-
for (; i < o.lines; i++) {
|
266
|
-
seg = css(createEl(), {
|
267
|
-
position: 'absolute',
|
268
|
-
top: 1 + ~ (o.width / 2) + 'px',
|
269
|
-
transform: o.hwaccel ? 'translate3d(0,0,0)' : '',
|
270
|
-
opacity: o.opacity,
|
271
|
-
animation: useCssAnimations && addAnimation(o.opacity, o.trail, start + i * o.direction, o.lines) + ' ' + 1 / o.speed + 's linear infinite'
|
272
|
-
})
|
273
|
-
|
274
|
-
if (o.shadow) ins(seg, css(fill('#000', '0 0 4px ' + '#000'), {
|
275
|
-
top: 2 + 'px'
|
276
|
-
}))
|
277
|
-
ins(el, ins(seg, fill(getColor(o.color, i), '0 0 1px rgba(0,0,0,.1)')))
|
278
|
-
}
|
279
|
-
return el
|
280
|
-
},
|
281
|
-
|
282
|
-
/**
|
283
|
-
* Internal method that adjusts the opacity of a single line.
|
284
|
-
* Will be overwritten in VML fallback mode below.
|
285
|
-
*/
|
286
|
-
opacity: function(el, i, val) {
|
287
|
-
if (i < el.childNodes.length) el.childNodes[i].style.opacity = val
|
288
|
-
}
|
289
|
-
|
290
|
-
})
|
291
|
-
|
292
|
-
|
293
|
-
function initVML() {
|
294
|
-
|
295
|
-
/* Utility function to create a VML tag */
|
296
|
-
function vml(tag, attr) {
|
297
|
-
return createEl('<' + tag + ' xmlns="urn:schemas-microsoft.com:vml" class="spin-vml">', attr)
|
298
|
-
}
|
299
|
-
|
300
|
-
// No CSS transforms but VML support, add a CSS rule for VML elements:
|
301
|
-
sheet.addRule('.spin-vml', 'behavior:url(#default#VML)')
|
302
|
-
|
303
|
-
Spinner.prototype.lines = function(el, o) {
|
304
|
-
var r = o.length + o.width,
|
305
|
-
s = 2 * r
|
306
|
-
|
307
|
-
function grp() {
|
308
|
-
return css(
|
309
|
-
vml('group', {
|
310
|
-
coordsize: s + ' ' + s,
|
311
|
-
coordorigin: -r + ' ' + -r
|
312
|
-
}), {
|
313
|
-
width: s,
|
314
|
-
height: s
|
315
|
-
})
|
316
|
-
}
|
317
|
-
|
318
|
-
var margin = -(o.width + o.length) * 2 + 'px',
|
319
|
-
g = css(grp(), {
|
320
|
-
position: 'absolute',
|
321
|
-
top: margin,
|
322
|
-
left: margin
|
323
|
-
}),
|
324
|
-
i
|
325
|
-
|
326
|
-
function seg(i, dx, filter) {
|
327
|
-
ins(g,
|
328
|
-
ins(css(grp(), {
|
329
|
-
rotation: 360 / o.lines * i + 'deg',
|
330
|
-
left: ~~dx
|
331
|
-
}),
|
332
|
-
ins(css(vml('roundrect', {
|
333
|
-
arcsize: o.corners
|
334
|
-
}), {
|
335
|
-
width: r,
|
336
|
-
height: o.width,
|
337
|
-
left: o.radius,
|
338
|
-
top: -o.width >> 1,
|
339
|
-
filter: filter
|
340
|
-
}),
|
341
|
-
vml('fill', {
|
342
|
-
color: getColor(o.color, i),
|
343
|
-
opacity: o.opacity
|
344
|
-
}),
|
345
|
-
vml('stroke', {
|
346
|
-
opacity: 0
|
347
|
-
}) // transparent stroke to fix color bleeding upon opacity change
|
348
|
-
)))
|
349
|
-
}
|
350
|
-
|
351
|
-
if (o.shadow) for (i = 1; i <= o.lines; i++)
|
352
|
-
seg(i, - 2, 'progid:DXImageTransform.Microsoft.Blur(pixelradius=2,makeshadow=1,shadowopacity=.3)')
|
353
|
-
|
354
|
-
for (i = 1; i <= o.lines; i++) seg(i)
|
355
|
-
return ins(el, g)
|
356
|
-
}
|
357
|
-
|
358
|
-
Spinner.prototype.opacity = function(el, i, val, o) {
|
359
|
-
var c = el.firstChild
|
360
|
-
o = o.shadow && o.lines || 0
|
361
|
-
if (c && i + o < c.childNodes.length) {
|
362
|
-
c = c.childNodes[i + o];
|
363
|
-
c = c && c.firstChild;
|
364
|
-
c = c && c.firstChild
|
365
|
-
if (c) c.opacity = val
|
366
|
-
}
|
367
|
-
}
|
368
|
-
}
|
369
|
-
|
370
|
-
var probe = css(createEl('group'), {
|
371
|
-
behavior: 'url(#default#VML)'
|
372
|
-
})
|
373
|
-
|
374
|
-
if (!vendor(probe, 'transform') && probe.adj) initVML()
|
375
|
-
else useCssAnimations = vendor(probe, 'animation')
|
376
|
-
|
377
|
-
return Spinner
|
378
|
-
|
379
|
-
}));
|