diff --git a/app/assets/javascripts/app/views/location_view.js b/app/assets/javascripts/app/views/location_view.js
index f6aedec15..364f3fa39 100644
--- a/app/assets/javascripts/app/views/location_view.js
+++ b/app/assets/javascripts/app/views/location_view.js
@@ -9,8 +9,8 @@ app.views.Location = Backbone.View.extend({
this.getLocation();
},
- render: function(){
- $("
", { alt: "ajax-loader", src: ImagePaths.get("ajax-loader2.gif") }).appendTo(this.el);
+ render: function() {
+ $("
-
-

+
@@ -102,6 +102,7 @@
diff --git a/app/views/aspects/_aspect_stream.haml b/app/views/aspects/_aspect_stream.haml
index 87e6af915..1673ce9e7 100644
--- a/app/views/aspects/_aspect_stream.haml
+++ b/app/views/aspects/_aspect_stream.haml
@@ -15,6 +15,7 @@
#paginate
%span.loader.hidden
+ .spinner
- if current_user.contacts.size < 2
= render 'aspects/no_contacts_message'
diff --git a/app/views/people/index.html.haml b/app/views/people/index.html.haml
index 281cc65e7..a2076c3b2 100644
--- a/app/views/people/index.html.haml
+++ b/app/views/people/index.html.haml
@@ -25,8 +25,9 @@
} );
%p
- = t('.searching')
- = image_tag('ajax-loader2.gif', class: 'loader')
+ = t(".searching")
+ .loader
+ .spinner
- else
%p
= t('.no_one_found')
diff --git a/app/views/people/show.html.haml b/app/views/people/show.html.haml
index 021592551..0d634d10f 100644
--- a/app/views/people/show.html.haml
+++ b/app/views/people/show.html.haml
@@ -31,6 +31,7 @@
#paginate
%span.loader.hidden
+ .spinner
%a{id:"back-to-top", title:"#{t('layouts.application.back_to_top')}", href:"#"}
⇧
diff --git a/app/views/publisher/_publisher.html.haml b/app/views/publisher/_publisher.html.haml
index 7fa043743..7585a7121 100644
--- a/app/views/publisher/_publisher.html.haml
+++ b/app/views/publisher/_publisher.html.haml
@@ -48,7 +48,8 @@
= hidden_field_tag 'aspect_ids[]', aspect_id.to_s
#publisher_spinner{class: 'hidden'}
- = image_tag 'ajax-loader2.gif'
+ .loader
+ .spinner
.options_and_submit.col-sm-12
.public_toggle
.btn.btn-default.pull-left#hide_publisher{title: t('shared.publisher.discard_post')}
diff --git a/app/views/shared/_modal.haml b/app/views/shared/_modal.haml
index 9fca27ef5..8305ac291 100644
--- a/app/views/shared/_modal.haml
+++ b/app/views/shared/_modal.haml
@@ -12,4 +12,6 @@
%h3.modal-title{id: "#{id}Label"}
= title
.modal-body
- = image_tag("ajax-loader2.gif", id: "modalWaiter", class: "img-responsive center-block")
+ #modalWaiter.text-center
+ .loader
+ .spinner
diff --git a/app/views/tags/show.haml b/app/views/tags/show.haml
index 1151d29f9..56dd1d43e 100644
--- a/app/views/tags/show.haml
+++ b/app/views/tags/show.haml
@@ -32,6 +32,7 @@
#paginate
%span.loader.hidden
+ .spinner
%a{id:"back-to-top", title:"#{t('layouts.application.back_to_top')}", href:"#"}
⇧
diff --git a/app/views/users/getting_started.haml b/app/views/users/getting_started.haml
index 009618b39..7b58b6d4a 100644
--- a/app/views/users/getting_started.haml
+++ b/app/views/users/getting_started.haml
@@ -24,7 +24,9 @@
= label_tag 'profile[first_name]', t('profiles.edit.your_name')
= text_field_tag 'profile[first_name]', current_user.first_name, class: "form-control"
.form-group
- = image_tag 'ajax-loader2.gif', id: "gs-name-form-spinner", class: "hidden"
+ #gs-name-form-spinner.hidden
+ .loader
+ .spinner
= label_tag :your_photo, t('profiles.edit.your_photo')
= render 'photos/new_profile_photo', aspect: :getting_started, person: current_user.person