Commit 8ec01e0ba9f839db885598c59439bc3c2f697f58

Authored by Dmitriy Zaporozhets
1 parent 3b42c267

remove ajax loader from wall

app/assets/javascripts/wall.js.coffee
... ... @@ -32,11 +32,6 @@
32 32 Wall.scrollDown()
33 33 $("abbr.timeago").timeago()
34 34  
35   - complete: ->
36   - $('.js-notes-busy').removeClass("loading")
37   - beforeSend: ->
38   - $('.js-notes-busy').addClass("loading")
39   -
40 35 initRefresh: ->
41 36 setInterval("Wall.refresh()", 10000)
42 37  
... ...
app/views/walls/show.html.haml
1 1 %div.wall-page
2 2 %ul.well-list.notes
3   - .notes-busy.js-notes-busy
4 3  
5 4 - if can? current_user, :write_note, @project
6 5 .note-form-holder
... ...