Skip to content

Commit

Permalink
Temporarily remove 'spinning' when switching sections.
Browse files Browse the repository at this point in the history
Resolves a number of weird regressions. Will bring back at a later date when I have a chance to fiddle with it.
  • Loading branch information
bobthecow committed Apr 30, 2012
1 parent 6eb648e commit da702a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions genghis.php

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion src/js/genghis/views/app.js
Expand Up @@ -53,7 +53,8 @@ Genghis.Views.App = Backbone.View.extend({
showSection: function(section) {
this.$('section').hide()
.filter('#'+(_.isArray(section) ? section.join(',#') : section))
.addClass('spinning').show();
//.addClass('spinning')
.show();

$(document).scrollTop(0);
}
Expand Down

0 comments on commit da702a7

Please sign in to comment.