CC-4445: Timeline: 'Select' dropdown menu should be disabled if the button is disabled
-fixed
This commit is contained in:
parent
990bcebfe8
commit
3c3b39796d
|
@ -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() {
|
||||
|
|
Loading…
Reference in New Issue