Remove some unnecessary ;

stable
David Barragán Merino 2014-08-30 22:35:20 +02:00
parent cb28972561
commit a1df00de11
1 changed files with 2 additions and 2 deletions

View File

@ -112,7 +112,7 @@ ProjectsPaginationDirective = ($timeout) ->
top = parseInt(element.css('top'), 10)
newTop = top - pageSize
element.animate({"top": newTop}, callback);
element.animate({"top": newTop}, callback)
return newTop
@ -120,7 +120,7 @@ ProjectsPaginationDirective = ($timeout) ->
top = parseInt(element.css('top'), 10)
newTop = top + pageSize
element.animate({"top": newTop}, callback);
element.animate({"top": newTop}, callback)
return newTop