Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove jquery-ui datepicker #2510

Merged
merged 1 commit into from
Jan 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion backend/app/assets/javascripts/spree/backend.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
//= require handlebars
//= require jquery
//= require jquery_ujs
//= require jquery-ui/datepicker
//= require jquery-ui/sortable
//= require jquery.sticky-kit.min
//= require solidus_admin/select2
Expand Down
1 change: 0 additions & 1 deletion backend/app/assets/stylesheets/spree/backend.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
* the top of the compiled file, but it's generally better to create a new file per style scope.

*= require jquery-ui/datepicker
*= require solidus_admin/select2
*= require solidus_admin/flatpickr/flatpickr
*= require prism
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
@import 'spree/backend/components/actions';
@import 'spree/backend/components/breadcrumb';
@import 'spree/backend/components/number_with_currency';
@import 'spree/backend/components/date-picker';
@import 'spree/backend/components/hint';
@import 'spree/backend/components/image_placeholder';
@import 'spree/backend/components/list_group';
Expand Down
3 changes: 0 additions & 3 deletions backend/spec/features/admin/orders/listing_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,6 @@
click_on "Filter Results"
fill_in "q_created_at_gt", with: Date.current

# Just so the datepicker gets out of poltergeists way.
page.execute_script("$('#q_created_at_gt').datepicker('widget').hide();")

click_on 'Filter Results'
within_row(1) { expect(page).to have_content("R100") }

Expand Down
Loading