Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'js/dist/alert.js')
-rw-r--r--js/dist/alert.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/js/dist/alert.js b/js/dist/alert.js
index 99b9a50ba0..0c930918cd 100644
--- a/js/dist/alert.js
+++ b/js/dist/alert.js
@@ -46,12 +46,12 @@ var Alert = function ($) {
function () {
function Alert(element) {
this._element = element;
- } // getters
+ } // Getters
var _proto = Alert.prototype;
- // public
+ // Public
_proto.close = function close(element) {
element = element || this._element;
@@ -69,7 +69,7 @@ var Alert = function ($) {
_proto.dispose = function dispose() {
$.removeData(this._element, DATA_KEY);
this._element = null;
- }; // private
+ }; // Private
_proto._getRootElement = function _getRootElement(element) {
@@ -111,7 +111,7 @@ var Alert = function ($) {
_proto._destroyElement = function _destroyElement(element) {
$(element).detach().trigger(Event.CLOSED).remove();
- }; // static
+ }; // Static
Alert._jQueryInterface = function _jQueryInterface(config) {