diff --git a/backend/app/assets/javascripts/spree/backend/payments/new.js b/backend/app/assets/javascripts/spree/backend/payments/new.js index cbb8bf2d0c5..d1892e4964c 100644 --- a/backend/app/assets/javascripts/spree/backend/payments/new.js +++ b/backend/app/assets/javascripts/spree/backend/payments/new.js @@ -35,16 +35,5 @@ $(document).ready(function() { } } ); - - $('.cvvLink').click(function(event){ - window_name = 'cvv_info'; - window_options = 'left=20,top=20,width=500,height=500,toolbar=0,resizable=0,scrollbars=1'; - window.open($(this).prop('href'), window_name, window_options); - event.preventDefault(); - }); - - $('select.jump_menu').change(function(){ - window.location = this.options[this.selectedIndex].value; - }); } }); diff --git a/backend/app/views/spree/admin/payments/source_forms/_gateway.html.erb b/backend/app/views/spree/admin/payments/source_forms/_gateway.html.erb index 3306623ba6f..e673aba6e6a 100644 --- a/backend/app/views/spree/admin/payments/source_forms/_gateway.html.erb +++ b/backend/app/views/spree/admin/payments/source_forms/_gateway.html.erb @@ -46,9 +46,6 @@
<%= label_tag "card_code#{payment_method.id}", Spree::CreditCard.human_attribute_name(:card_code), class: 'required' %> <%= text_field_tag "#{param_prefix}[verification_value]", '', id: "card_code#{payment_method.id}", class: 'required fullwidth cardCode', size: 5 %> - - (<%= Spree.t(:what_is_this) %>) -