CC-4445: Timeline: 'Select' dropdown menu should be disabled if the button is disabled

-fixed
This commit is contained in:
denise 2012-09-17 12:10:23 -04:00
parent 990bcebfe8
commit 3c3b39796d
1 changed files with 5 additions and 0 deletions

View File

@ -71,6 +71,11 @@ var AIRTIME = (function(AIRTIME){
else {
AIRTIME.button.disableButton("btn-group #timeline-select", true);
}
//need to check if the 'Select' button is disabled
if ($(".btn-group #timeline-select").is(":disabled")) {
$(".btn-group #timeline-select").removeAttr("disabled");
}
};
mod.checkTrimButton = function() {