Closed (fixed)
Project:
Maestro
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
15 Mar 2012 at 12:43 UTC
Updated:
14 Jun 2012 at 17:04 UTC
The launch button stopped working with latest dev update.
I traced the error to be on line 216 in taskconsole.js
Old code:
$('.maestro_taskconsole_interactivetaskcontent input[type=submit], input[type=button]').click(function() {
Fix:
$('.maestro_taskconsole_interactivetaskcontent input[type=button]').click(function() {
Comments
Comment #1
_randy commentedThis does indeed let the launch happen -- however it seems to break the interactive function's ability to complete.
I found that adding one line of JS to the taskconsole.js file seems to fix all use cases:
Original taskconsole.js line 214-217:
Updated taskconsole.js line 214-218:
I just added in the "if(this.id....." js line.
Comment #2
newmember commentedI updating lines 214-218
Tested and worked for me in Chrome.
Comment #3
_randy commented