mirror of https://github.com/apache/cloudstack.git
Dynamically load UI plugins via require.js
Plugin code uses the following format:
(function (cloudStack) {
var testPlugin1 = function(plugin) {
// Plugin code goes here
};
cloudStack.plugin({
id: 'testPlugin1',
title: 'Test Plugin 1',
desc: 'Sample plugin 1',
load: testPlugin1
});
}(cloudStack));
|
||
|---|---|---|
| .. | ||
| autoscaler.js | ||
| dashboard.js | ||
| enableStaticNAT.js | ||
| installWizard.js | ||
| instanceWizard.js | ||
| ipRules.js | ||
| login.js | ||
| physicalResources.js | ||
| plugins.js | ||
| projects.js | ||
| recurringSnapshots.js | ||
| securityRules.js | ||
| uploadVolume.js | ||
| vpc.js | ||
| zoneChart.js | ||
| zoneWizard.js | ||