mirror of
https://github.com/apache/cloudstack.git
synced 2025-10-26 08:42:29 +01:00
12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
(function(cloudStack) {
|
|
// Admin dashboard
|
|
cloudStack.sections.dashboard = {
|
|
title: 'Dashboard',
|
|
show: function() {
|
|
return $('<img>').attr({
|
|
src: 'images/screens/Dashboard2.jpg'
|
|
});
|
|
}
|
|
};
|
|
})(cloudStack);
|