diff options
author | Calum Brodie <calumbrodie@googlemail.com> | 2012-03-14 17:23:19 +0000 |
---|---|---|
committer | Calum Brodie <calumbrodie@googlemail.com> | 2012-03-14 17:23:19 +0000 |
commit | 6c66dbb448fc0f95eb3a6182458bddd8380014bd (patch) | |
tree | ba67c949628b87e17986937b725a98932214b7ab | |
parent | 2be998f660cfc2040af549a83e678d7bc395e66c (diff) | |
download | jQuery-Impromptu-6c66dbb448fc0f95eb3a6182458bddd8380014bd.zip jQuery-Impromptu-6c66dbb448fc0f95eb3a6182458bddd8380014bd.tar.gz jQuery-Impromptu-6c66dbb448fc0f95eb3a6182458bddd8380014bd.tar.bz2 |
Removed debug comments
-rw-r--r-- | jquery-impromptu.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jquery-impromptu.js b/jquery-impromptu.js index 33a8936..5d79aa7 100644 --- a/jquery-impromptu.js +++ b/jquery-impromptu.js @@ -83,7 +83,7 @@ states += ' name="' + $.prompt.options.prefix + '_' + statename + '_button' + v.title.replace(/[^a-z0-9]+/gi,'') + '" id="' + $.prompt.options.prefix + '_' + statename + '_button' + v.title.replace(/[^a-z0-9]+/gi,'') + '" value="' + v.value + '">' + v.title + '</button>';
} else {
- //states += '<button name="' + $.prompt.options.prefix + '_' + statename + '_button' + k + '" id="' + $.prompt.options.prefix + '_' + statename + '_button' + k + '" value="' + v + '">' + k + '</button>';
+ states += '<button name="' + $.prompt.options.prefix + '_' + statename + '_button' + k + '" id="' + $.prompt.options.prefix + '_' + statename + '_button' + k + '" value="' + v + '">' + k + '</button>';
}
});
|