Merge branch 'master' into production

This commit is contained in:
Nick Winter 2014-03-29 14:06:30 -07:00
commit b84b86c6b5
2 changed files with 4 additions and 3 deletions

View file

@ -5,7 +5,7 @@ app = require('application')
class SearchCollection extends Backbone.Collection
initialize: (modelURL, @model, @term) ->
@url = "#{modelURL}/search?project=yes"
@url = "#{modelURL}/search?project=true"
@url += "&term=#{term}" if @term
module.exports = class ThangTypeHomeView extends View

View file

@ -24,7 +24,8 @@ module.exports = class ProblemAlertView extends View
afterRender: ->
super()
@$el.addClass('alert').addClass("alert-#{@problem.aetherProblem.level}")
@$el.addClass('alert').addClass("alert-#{@problem.aetherProblem.level}").hide().fadeIn('slow')
Backbone.Mediator.publish 'play-sound', trigger: 'error_appear', volume: 1.0
onRemoveClicked: ->
@$el.remove()