mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
21 lines
447 B
JavaScript
21 lines
447 B
JavaScript
(function(cloudStack, testData) {
|
|
// Admin dashboard
|
|
cloudStack.sections.dashboard = {
|
|
title: 'Dashboard',
|
|
show: function() {
|
|
return $('#template').find('div.dashboard.admin').clone();
|
|
}
|
|
};
|
|
|
|
// User dashboard
|
|
/*
|
|
cloudStack.sections['dashboard-user'] = {
|
|
title: 'Dashboard (user)',
|
|
show: function() {
|
|
return $('#template').find('div.dashboard.user').clone();
|
|
}
|
|
};
|
|
*/
|
|
|
|
})(cloudStack, testData);
|