Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1421 → Rev 1422

/mozilla/nomodal/branch/001_own_dialogs/src/chrome/content/Common.js
0,0 → 1,17
// =====================================================================================================================
var NoModal = {
// -----------------------------------------------------------------------------------------------------------------
inherit: function(child, supertype)
{
child.prototype.__proto__ = supertype.prototype;
},
 
// -----------------------------------------------------------------------------------------------------------------
startup: function()
{
Components.utils.import("resource://nomodal_modules/DialogParams.jsm");
},
}
 
// == BOOTSTRAP ========================================================================================================
NoModal.startup();