Merged in mcuiza/processmaker/HOR-1101 (pull request #4420)

HOR-1101
This commit is contained in:
Julio Cesar Laura Avendaño
2016-06-23 15:05:55 -04:00
6 changed files with 163 additions and 1 deletions

View File

@@ -1155,6 +1155,13 @@ Ext.onReady ( function() {
// text: 'Reassign',
// text: TRANSLATIONS.LABEL_UNSELECT_ALL,
handler: function(){
if(openReassignCallback) {
for(var key in openReassignCallback){
var callbackFunction = new Function(openReassignCallback[key]);
callbackFunction.call();
}
return;
}
reassign();
}
});
@@ -2596,3 +2603,4 @@ Ext.EventManager.on(window, 'beforeunload', function () {
casesNewTab.close();
}
});