mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-16 22:50:09 +00:00
16 lines
410 B
JavaScript
16 lines
410 B
JavaScript
// Sencha Touch related things
|
|
|
|
Proxmox.Utils.toolkit = 'touch';
|
|
|
|
Ext.Ajax.setDisableCaching(false);
|
|
|
|
// do not send '_dc' parameter
|
|
Ext.Ajax.disableCaching = false;
|
|
|
|
Ext.MessageBox = Ext.Msg = {
|
|
alert: (title, message) => console.warn(title, message),
|
|
show: ({ title, message }) => console.warn(title, message),
|
|
};
|
|
|
|
Ext.Loader.injectScriptElement = (url) => console.warn(`surpressed loading ${url}`);
|