diff --git a/app/views/artists/_form.html.erb b/app/views/artists/_form.html.erb
index d0a3b8b69..02c48b0c2 100644
--- a/app/views/artists/_form.html.erb
+++ b/app/views/artists/_form.html.erb
@@ -19,6 +19,6 @@
<%= f.input :url_string, :label => "URLs", :as => :text, :input_html => {:size => "50x5"} %>
<%= dtext_field "artist", "notes" %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<%= dtext_preview_button "artist", "notes" %>
<% end %>
diff --git a/app/views/bulk_update_requests/_form.html.erb b/app/views/bulk_update_requests/_form.html.erb
index 9bb8c984e..d7c8dae71 100644
--- a/app/views/bulk_update_requests/_form.html.erb
+++ b/app/views/bulk_update_requests/_form.html.erb
@@ -42,6 +42,6 @@ category tag_name -> category_name
<%= f.input :forum_post_id %>
<% end %>
- <%= f.button :submit, :value => "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, :value => "Submit" %>
<%= dtext_preview_button "bulk_update_request", "reason" %>
<% end %>
diff --git a/app/views/comments/_form.html.erb b/app/views/comments/_form.html.erb
index 5850efef5..645385043 100644
--- a/app/views/comments/_form.html.erb
+++ b/app/views/comments/_form.html.erb
@@ -3,7 +3,7 @@
<%= simple_form_for(comment, :html => {:class => "edit_comment"}) do |f| %>
<%= f.hidden_field :post_id %>
<%= dtext_field "comment", "body", :classes => "autocomplete-mentions", :value => comment.body, :input_id => "comment_body_for_#{comment.id}", :preview_id => "dtext-preview-for-#{comment.id}" %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<%= dtext_preview_button "comment", "body", :input_id => "comment_body_for_#{comment.id}", :preview_id => "dtext-preview-for-#{comment.id}" %>
<% if comment.new_record? %>
<%= f.input :do_not_bump_post, :label => "No bump" %>
diff --git a/app/views/favorite_groups/new.html.erb b/app/views/favorite_groups/new.html.erb
index 1131a6b90..91013659c 100644
--- a/app/views/favorite_groups/new.html.erb
+++ b/app/views/favorite_groups/new.html.erb
@@ -7,7 +7,7 @@
<%= simple_form_for(@favorite_group) do |f| %>
<%= f.input :name, :as => :string, :required => true %>
<%= f.input :post_ids, :label => "Posts" %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<% end %>
diff --git a/app/views/forum_posts/partials/new/_form.html.erb b/app/views/forum_posts/partials/new/_form.html.erb
index e63351076..73789fde4 100644
--- a/app/views/forum_posts/partials/new/_form.html.erb
+++ b/app/views/forum_posts/partials/new/_form.html.erb
@@ -8,6 +8,6 @@
<% end %>
<%= dtext_field "forum_post", "body", :classes => "autocomplete-mentions" %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<%= dtext_preview_button "forum_post", "body" %>
<% end %>
diff --git a/app/views/forum_topics/_form.html.erb b/app/views/forum_topics/_form.html.erb
index e19c12128..1eb18777b 100644
--- a/app/views/forum_topics/_form.html.erb
+++ b/app/views/forum_topics/_form.html.erb
@@ -19,7 +19,7 @@
<%= f.input :is_locked, :label => "Locked" %>
<% end %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<%= dtext_preview_button "forum_post", "body", :input_id => "forum_post_body_for_#{forum_topic.original_post.id}", :preview_id => "dtext-preview-for-#{forum_topic.original_post.id}" %>
<% end %>
diff --git a/app/views/moderator/tags/edit.html.erb b/app/views/moderator/tags/edit.html.erb
index 02131d819..630310e1e 100644
--- a/app/views/moderator/tags/edit.html.erb
+++ b/app/views/moderator/tags/edit.html.erb
@@ -14,7 +14,7 @@
- <%= submit_tag "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= submit_tag "Submit" %>
<% end %>
diff --git a/app/views/news_updates/new.html.erb b/app/views/news_updates/new.html.erb
index 18b65b010..9b2c9a309 100644
--- a/app/views/news_updates/new.html.erb
+++ b/app/views/news_updates/new.html.erb
@@ -4,7 +4,7 @@
<%= simple_form_for(@news_update) do |f| %>
<%= f.input :message, :hint => "Use HTML for formatting", :input_html => {:size => "30x5"} %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<% end %>
diff --git a/app/views/pool_elements/_new.html.erb b/app/views/pool_elements/_new.html.erb
index b89299eb1..05752ce2c 100644
--- a/app/views/pool_elements/_new.html.erb
+++ b/app/views/pool_elements/_new.html.erb
@@ -8,7 +8,7 @@
- <%= submit_tag "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= submit_tag "Submit" %>
<% end %>
diff --git a/app/views/pools/new.html.erb b/app/views/pools/new.html.erb
index d09c6963f..01c8c8411 100644
--- a/app/views/pools/new.html.erb
+++ b/app/views/pools/new.html.erb
@@ -10,7 +10,7 @@
<%= f.input :post_ids, :label => "Posts" %>
<%= f.input :category, :collection => ["series", "collection"], :include_blank => true, :selected => "", :required => true %>
<%= f.input :is_active %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<%= dtext_preview_button "pool", "description" %>
<% end %>
diff --git a/app/views/posts/partials/index/_edit.html.erb b/app/views/posts/partials/index/_edit.html.erb
index 7301b1065..1d76bf274 100644
--- a/app/views/posts/partials/index/_edit.html.erb
+++ b/app/views/posts/partials/index/_edit.html.erb
@@ -4,7 +4,7 @@
<%= form_tag("/posts", :class => "simple_form", :method => :put, :id => "quick-edit-form") do %>
<%= text_area_tag "post[tag_string]", "", :data => { :autocomplete => "tag-edit" } %>
- <%= submit_tag "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= submit_tag "Submit" %>
<%= submit_tag "Cancel" %>
<% end %>
diff --git a/app/views/posts/partials/show/_edit.html.erb b/app/views/posts/partials/show/_edit.html.erb
index 5d0191b3d..1bbed2490 100644
--- a/app/views/posts/partials/show/_edit.html.erb
+++ b/app/views/posts/partials/show/_edit.html.erb
@@ -91,7 +91,7 @@
- <%= submit_tag "Submit", :data => { :disable_with => "Submitting..." }, :class => "ui-button ui-widget ui-corner-all" %>
+ <%= submit_tag "Submit", :class => "ui-button ui-widget ui-corner-all" %>
diff --git a/app/views/saved_searches/edit.html.erb b/app/views/saved_searches/edit.html.erb
index 71f496f30..b483bf9f0 100644
--- a/app/views/saved_searches/edit.html.erb
+++ b/app/views/saved_searches/edit.html.erb
@@ -7,7 +7,7 @@
<%= simple_form_for(@saved_search) do |f| %>
<%= f.input :query, :as => :string %>
<%= f.input :label_string, :label => "Labels", :hint => "A list of tags to help categorize this search. Space delimited." %>
- <%= f.button :submit, :value => "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, :value => "Submit" %>
<% end %>
diff --git a/app/views/tag_alias_requests/new.html.erb b/app/views/tag_alias_requests/new.html.erb
index 427932a12..42a8eef79 100644
--- a/app/views/tag_alias_requests/new.html.erb
+++ b/app/views/tag_alias_requests/new.html.erb
@@ -30,7 +30,7 @@
- <%= submit_tag "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= submit_tag "Submit" %>
<%= dtext_preview_button "tag_alias_request", "reason" %>
<% end %>
diff --git a/app/views/tag_implication_requests/new.html.erb b/app/views/tag_implication_requests/new.html.erb
index fbb52f4cc..26c4cc87e 100644
--- a/app/views/tag_implication_requests/new.html.erb
+++ b/app/views/tag_implication_requests/new.html.erb
@@ -30,7 +30,7 @@
- <%= submit_tag "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= submit_tag "Submit" %>
<%= dtext_preview_button "tag_implication_request", "reason" %>
<% end %>
diff --git a/app/views/tags/edit.html.erb b/app/views/tags/edit.html.erb
index 744f1c829..dd5db56ea 100644
--- a/app/views/tags/edit.html.erb
+++ b/app/views/tags/edit.html.erb
@@ -13,7 +13,7 @@
<%= f.input :is_locked, :collection => [["No", "false"], ["Yes", "true"]], :include_blank => false %>
<% end %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<% end %>
diff --git a/app/views/uploads/new.html.erb b/app/views/uploads/new.html.erb
index 7d5b771e7..ce4eda756 100644
--- a/app/views/uploads/new.html.erb
+++ b/app/views/uploads/new.html.erb
@@ -118,7 +118,7 @@
- <%= submit_tag "Submit", :id => "submit-button", :class => "large ui-button ui-widget ui-corner-all gradient" %>
+ <%= submit_tag "Submit", :id => "submit-button", :class => "large ui-button ui-widget ui-corner-all gradient", data: {disable_with: false} %>
diff --git a/app/views/user_feedbacks/edit.html.erb b/app/views/user_feedbacks/edit.html.erb
index fb08c06a0..279f058b1 100644
--- a/app/views/user_feedbacks/edit.html.erb
+++ b/app/views/user_feedbacks/edit.html.erb
@@ -10,7 +10,7 @@
<%= simple_form_for(@user_feedback) do |f| %>
<%= f.input :category, :collection => ["positive", "neutral", "negative"], :include_blank => false %>
<%= dtext_field "user_feedback", "body" %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<%= dtext_preview_button "user_feedback", "body" %>
<% end %>
diff --git a/app/views/user_feedbacks/new.html.erb b/app/views/user_feedbacks/new.html.erb
index 228057b7c..4a146d738 100644
--- a/app/views/user_feedbacks/new.html.erb
+++ b/app/views/user_feedbacks/new.html.erb
@@ -11,7 +11,7 @@
<%= f.input :user_name, :label => "User" %>
<%= f.input :category, :collection => ["positive", "neutral", "negative"], :include_blank => false %>
<%= dtext_field "user_feedback", "body" %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<%= dtext_preview_button "user_feedback", "body" %>
<% end %>
diff --git a/app/views/user_name_change_requests/new.html.erb b/app/views/user_name_change_requests/new.html.erb
index af81b58dc..637faabec 100644
--- a/app/views/user_name_change_requests/new.html.erb
+++ b/app/views/user_name_change_requests/new.html.erb
@@ -10,7 +10,7 @@
<%= simple_form_for(@change_request) do |f| %>
<%= f.input :desired_name %>
- <%= f.submit "Submit", data: { disable_with: "Submitting..." } %>
+ <%= f.submit "Submit" %>
<% end %>
diff --git a/app/views/users/edit.html.erb b/app/views/users/edit.html.erb
index 55812a2e8..8a850a2b7 100644
--- a/app/views/users/edit.html.erb
+++ b/app/views/users/edit.html.erb
@@ -96,7 +96,7 @@
<%= f.input :custom_style, :label => "Custom CSS style".html_safe, :hint => "Style to apply to the whole site.", :input_html => {:size => "40x5"} %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<% end %>
diff --git a/app/views/wiki_pages/_form.html.erb b/app/views/wiki_pages/_form.html.erb
index 30f4eed32..5bd91b149 100644
--- a/app/views/wiki_pages/_form.html.erb
+++ b/app/views/wiki_pages/_form.html.erb
@@ -24,7 +24,7 @@
<%= f.input :skip_secondary_validations, as: :boolean, label: "Force rename", hint: "Ignore the renaming requirements" %>
<% end %>
- <%= f.button :submit, "Submit", :data => { :disable_with => "Submitting..." } %>
+ <%= f.button :submit, "Submit" %>
<%= dtext_preview_button "wiki_page", "body" %>
<% end %>