mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-02 16:21:01 -04:00
Fixed bug with pointer animation.
This commit is contained in:
parent
4a2f2700bc
commit
6d75b5593a
1 changed files with 2 additions and 1 deletions
|
@ -210,6 +210,7 @@ module.exports = class PlayLevelView extends View
|
|||
@loadingView?.unveil()
|
||||
|
||||
onLoadingViewUnveiled: (e) ->
|
||||
@loadingView.$el.remove()
|
||||
@removeSubView @loadingView
|
||||
@loadingView = null
|
||||
unless @isEditorPreview
|
||||
|
@ -381,7 +382,7 @@ module.exports = class PlayLevelView extends View
|
|||
), 1)
|
||||
|
||||
|
||||
animatePointer: ->
|
||||
animatePointer: =>
|
||||
pointer = $('#pointer')
|
||||
pointer.css('transition', 'all 0.6s ease-out')
|
||||
pointer.css('transform', "rotate(#{@pointerRotation}rad) translate(-3px, #{@pointerRadialDistance-50}px)")
|
||||
|
|
Loading…
Add table
Reference in a new issue