Files
scattport-web/assets/js/common.js
2011-04-22 19:33:12 +02:00

26 lines
465 B
JavaScript

/**
* Shows a message box with given the title and message.
*
* @param {} title
* @param {} message
*/
var message = function(title, message, icon) {
Ext.Msg.show({
title: title,
msg: message,
minWidth: 200,
modal: true,
icon: Ext.Msg.ERROR,
buttons: Ext.Msg.OK
});
};
var settings = new SettingsWindow();
/**
* Application main entry point
*/
Ext.onReady(function() {
Ext.QuickTips.init();
});