Fix spelling error in cancellation.

This commit is contained in:
Mathias Meyer 2014-05-20 07:50:26 +02:00
parent 831c7c3742
commit 1f53f9d100

View File

@ -174,7 +174,7 @@ Travis.reopen
cancelBuild: -> cancelBuild: ->
if @get('canCancelBuild') if @get('canCancelBuild')
Travis.flash(notice: 'Build cancelation has been scheduled.') Travis.flash(notice: 'Build cancellation has been scheduled.')
@get('build').cancel().then -> @get('build').cancel().then ->
Travis.flash(success: 'Build has been successfully canceled.') Travis.flash(success: 'Build has been successfully canceled.')
, (xhr) -> , (xhr) ->
@ -187,7 +187,7 @@ Travis.reopen
cancelJob: -> cancelJob: ->
if @get('canCancelJob') if @get('canCancelJob')
Travis.flash(notice: 'Job cancelation has been scheduled.') Travis.flash(notice: 'Job cancellation has been scheduled.')
@get('job').cancel().then -> @get('job').cancel().then ->
Travis.flash(success: 'Job has been successfully canceled.') Travis.flash(success: 'Job has been successfully canceled.')
, (xhr) -> , (xhr) ->