mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-19 16:37:39 +00:00
16 lines
407 B
JavaScript
16 lines
407 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}`)
|