Jump to content

Recommended Posts

Posted (edited)

Cause

The HandleCommandsSelectionMenu function doesn't check whether the command textbox is disabled before inserting the command text.

Fix

In configwizard.js below the line containing

whatfunc="HandleCommandsSelectionMenu()";

add


if (document.getElementById("cmd1").disabled)
Alert("",getText(txtMustAddCommand),"",3,-1,0,0);;

In lang_en.js below the line containing

txtDeleteCommandConfirm[lang]	= ['Are you sure you want to delete this command?'];

add


txtMustAddCommand[lang] = ['You must add a command entry through the \'Add\' button before being able to perform this operation.'];

In globals_lang.js below the line containing

var txtDeleteCommandConfirm=[];

add


var txtMustAddCommand=[];

Edited by Francesco

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...