Whitespace cleanup

This commit is contained in:
Brian Federle 2011-11-17 14:20:15 -08:00
parent 496f591e56
commit c6c75c498e

View File

@ -871,7 +871,7 @@
}
},
//???
enable: {
enable: {
label: 'Enable network offering',
messages: {
confirm: function(args) {
@ -1022,7 +1022,7 @@ enable: {
allowedActions.push("edit");
allowedActions.push("delete");
return allowedActions;
}
};
var systemServiceOfferingActionfilter = function(args) {
var jsonObj = args.context.item;
@ -1030,7 +1030,7 @@ enable: {
allowedActions.push("edit");
allowedActions.push("delete");
return allowedActions;
}
};
var diskOfferingActionfilter = function(args) {
var jsonObj = args.context.item;
@ -1038,7 +1038,7 @@ enable: {
allowedActions.push("edit");
allowedActions.push("delete");
return allowedActions;
}
};
var networkOfferingActionfilter = function(args) {
var jsonObj = args.context.item;
@ -1049,6 +1049,6 @@ enable: {
else if(jsonObj.state == "Disabled")
allowedActions.push("enable");
return allowedActions;
}
};
})(cloudStack, testData);