mirror of
https://git.proxmox.com/git/pmg-gui
synced 2025-06-01 18:12:38 +00:00
20 lines
309 B
JavaScript
20 lines
309 B
JavaScript
Ext.ns('PMG');
|
|
|
|
console.log("Starting PMG Manager");
|
|
|
|
|
|
Ext.define('PMG.Utils', {
|
|
singleton: true,
|
|
|
|
// this singleton contains miscellaneous utilities
|
|
|
|
yesText: gettext('Yes'),
|
|
noText: gettext('No'),
|
|
|
|
constructor: function() {
|
|
var me = this;
|
|
|
|
// do whatever you want here
|
|
}
|
|
});
|