__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
/**
* A dialogue type designed to display informative messages to users.
*
* @module moodle-core-notification
*/
/**
* Extends core Dialogue to provide a type of dialogue which can be used
* for informative message which are modal, and centered.
*
* @param {Object} config Object literal specifying the dialogue configuration properties.
* @constructor
* @class M.core.notification.info
* @extends M.core.dialogue
*/
var INFO = function() {
INFO.superclass.constructor.apply(this, arguments);
};
Y.extend(INFO, M.core.dialogue, {
initializer: function() {
this.show();
}
}, {
NAME: 'Moodle information dialogue',
CSS_PREFIX: DIALOGUE_PREFIX
});
Y.Base.modifyAttrs(INFO, {
/**
* Whether the widget should be modal or not.
*
* We override this to change the default from false to true for a subset of dialogues.
*
* @attribute modal
* @type Boolean
* @default true
*/
modal: {
validator: Y.Lang.isBoolean,
value: true
}
});
M.core.notification = M.core.notification || {};
M.core.notification.info = INFO;
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| ajaxexception.js | File | 4.95 KB | 0777 |
|
| alert.js | File | 3.33 KB | 0777 |
|
| confirm.js | File | 5.68 KB | 0777 |
|
| dialogue.js | File | 29.69 KB | 0777 |
|
| exception.js | File | 5.56 KB | 0777 |
|
| info.js | File | 1.08 KB | 0777 |
|
| notification.js | File | 798 B | 0777 |
|
| shared.js | File | 660 B | 0777 |
|