Fixed IE9 issues.
This commit is contained in:
parent
ac9e71c4f2
commit
ac692bbd18
2 changed files with 4 additions and 4 deletions
|
@ -222,7 +222,6 @@ class _taskManagerSingleton extends App.Controller
|
|||
worker.release()
|
||||
@workersStarted[ key ] = false
|
||||
@taskDestroy(task)
|
||||
App.Event.trigger 'task:render'
|
||||
|
||||
notify: ( key ) =>
|
||||
task = @get( key )
|
||||
|
@ -262,8 +261,10 @@ class _taskManagerSingleton extends App.Controller
|
|||
|
||||
taskDestroy: (task) ->
|
||||
@clearDelay( task.id, 'taskbar' )
|
||||
task.destroy()
|
||||
task.destroy(
|
||||
success: ->
|
||||
App.Event.trigger 'task:render'
|
||||
)
|
||||
|
||||
tasksInitial: =>
|
||||
# reopen tasks
|
||||
|
|
|
@ -225,7 +225,6 @@ class TestCase < Test::Unit::TestCase
|
|||
instance.navigate.refresh
|
||||
elsif action[:execute] == 'js'
|
||||
result = instance.execute_script( action[:value] )
|
||||
puts "JS RESULT" + result.inspect
|
||||
elsif action[:link]
|
||||
if action[:link].match '###stack###'
|
||||
action[:link].gsub! '###stack###', @stack
|
||||
|
|
Loading…
Reference in a new issue