Paladox has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/253899

Change subject: Update js
......................................................................

Update js

Update } )( mediaWiki, OO ); to }( mediaWiki, OO ) );

Change-Id: I1c930a3b4a5439780e1474542663220f979b0b0b
---
M modules/ext.echo.init.js
M modules/logger/mw.echo.Logger.js
M modules/ooui/mw.echo.ui.BadgeLinkWidget.js
M modules/ooui/mw.echo.ui.NotificationBadgeWidget.js
M modules/ooui/mw.echo.ui.NotificationOptionWidget.js
M modules/ooui/mw.echo.ui.NotificationsWidget.js
M modules/ooui/mw.echo.ui.PlaceholderOptionWidget.js
M modules/ooui/mw.echo.ui.js
M modules/special/ext.echo.special.js
M modules/viewmodel/mw.echo.dm.APIHandler.js
M modules/viewmodel/mw.echo.dm.AbstractAPIHandler.js
M modules/viewmodel/mw.echo.dm.NotificationList.js
M modules/viewmodel/mw.echo.dm.NotificationsModel.js
M modules/viewmodel/mw.echo.dm.js
14 files changed, 14 insertions(+), 14 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/mediawiki/extensions/Echo 
refs/changes/99/253899/1

diff --git a/modules/ext.echo.init.js b/modules/ext.echo.init.js
index 0d84e4f..053e94e 100644
--- a/modules/ext.echo.init.js
+++ b/modules/ext.echo.init.js
@@ -140,4 +140,4 @@
                } );
        } );
 
-} )( mediaWiki, jQuery );
+}( mediaWiki, jQuery ) );
diff --git a/modules/logger/mw.echo.Logger.js b/modules/logger/mw.echo.Logger.js
index b85ff40..4611c00 100644
--- a/modules/logger/mw.echo.Logger.js
+++ b/modules/logger/mw.echo.Logger.js
@@ -138,4 +138,4 @@
        };
 
        mw.echo.logger = new mw.echo.Logger();
-} )( jQuery, mediaWiki );
+}( jQuery, mediaWiki ) );
diff --git a/modules/ooui/mw.echo.ui.BadgeLinkWidget.js 
b/modules/ooui/mw.echo.ui.BadgeLinkWidget.js
index 61b7039..5955ec3 100644
--- a/modules/ooui/mw.echo.ui.BadgeLinkWidget.js
+++ b/modules/ooui/mw.echo.ui.BadgeLinkWidget.js
@@ -46,4 +46,4 @@
 
        mw.echo.ui.BadgeLinkWidget.static.tagName = 'a';
 
-} )( mediaWiki, jQuery );
+}( mediaWiki, jQuery ) );
diff --git a/modules/ooui/mw.echo.ui.NotificationBadgeWidget.js 
b/modules/ooui/mw.echo.ui.NotificationBadgeWidget.js
index 34961b0..cfa846a 100644
--- a/modules/ooui/mw.echo.ui.NotificationBadgeWidget.js
+++ b/modules/ooui/mw.echo.ui.NotificationBadgeWidget.js
@@ -352,4 +352,4 @@
                return this.notificationsModel;
        };
 
-} )( mediaWiki, jQuery );
+}( mediaWiki, jQuery ) );
diff --git a/modules/ooui/mw.echo.ui.NotificationOptionWidget.js 
b/modules/ooui/mw.echo.ui.NotificationOptionWidget.js
index 818d0a2..216e4a8 100644
--- a/modules/ooui/mw.echo.ui.NotificationOptionWidget.js
+++ b/modules/ooui/mw.echo.ui.NotificationOptionWidget.js
@@ -150,4 +150,4 @@
                this.model.disconnect( this );
        };
 
-} )( mediaWiki, jQuery );
+}( mediaWiki, jQuery ) );
diff --git a/modules/ooui/mw.echo.ui.NotificationsWidget.js 
b/modules/ooui/mw.echo.ui.NotificationsWidget.js
index 10712af..76b4f8d 100644
--- a/modules/ooui/mw.echo.ui.NotificationsWidget.js
+++ b/modules/ooui/mw.echo.ui.NotificationsWidget.js
@@ -136,4 +136,4 @@
                this.loadingOptionWidget.setLabel( label || '' );
                this.addItems( [ this.loadingOptionWidget ] );
        };
-} )( mediaWiki );
+}( mediaWiki ) );
diff --git a/modules/ooui/mw.echo.ui.PlaceholderOptionWidget.js 
b/modules/ooui/mw.echo.ui.PlaceholderOptionWidget.js
index a5571b1..3ff82b2 100644
--- a/modules/ooui/mw.echo.ui.PlaceholderOptionWidget.js
+++ b/modules/ooui/mw.echo.ui.PlaceholderOptionWidget.js
@@ -21,4 +21,4 @@
        mw.echo.ui.PlaceholderOptionWidget.static.highlightable = false;
        mw.echo.ui.PlaceholderOptionWidget.static.pressable = false;
 
-} )( mediaWiki, jQuery );
+}( mediaWiki, jQuery ) );
diff --git a/modules/ooui/mw.echo.ui.js b/modules/ooui/mw.echo.ui.js
index c84979a..986582f 100644
--- a/modules/ooui/mw.echo.ui.js
+++ b/modules/ooui/mw.echo.ui.js
@@ -1,4 +1,4 @@
 ( function ( mw ) {
        mw.echo = mw.echo || {};
        mw.echo.ui = {};
-} )( mediaWiki );
+}( mediaWiki ) );
diff --git a/modules/special/ext.echo.special.js 
b/modules/special/ext.echo.special.js
index dd2bb57..99525a5 100644
--- a/modules/special/ext.echo.special.js
+++ b/modules/special/ext.echo.special.js
@@ -168,4 +168,4 @@
 
        $( document ).ready( mw.echo.special.initialize );
 
-} )( jQuery, mediaWiki );
+}( jQuery, mediaWiki ) );
diff --git a/modules/viewmodel/mw.echo.dm.APIHandler.js 
b/modules/viewmodel/mw.echo.dm.APIHandler.js
index 7818daa..22c10f2 100644
--- a/modules/viewmodel/mw.echo.dm.APIHandler.js
+++ b/modules/viewmodel/mw.echo.dm.APIHandler.js
@@ -113,4 +113,4 @@
                                return OO.getProp( result.query, 
'notifications', 'rawcount' ) || 0;
                        } );
        };
-} )( mediaWiki, jQuery );
+}( mediaWiki, jQuery ) );
diff --git a/modules/viewmodel/mw.echo.dm.AbstractAPIHandler.js 
b/modules/viewmodel/mw.echo.dm.AbstractAPIHandler.js
index 1ce0a38..728ca09 100644
--- a/modules/viewmodel/mw.echo.dm.AbstractAPIHandler.js
+++ b/modules/viewmodel/mw.echo.dm.AbstractAPIHandler.js
@@ -117,4 +117,4 @@
        mw.echo.dm.AbstractAPIHandler.prototype.getBaseParams = function () {
                return this.baseParams;
        };
-} )( mediaWiki );
+}( mediaWiki ) );
diff --git a/modules/viewmodel/mw.echo.dm.NotificationList.js 
b/modules/viewmodel/mw.echo.dm.NotificationList.js
index 7d4fbea..5a003e8 100644
--- a/modules/viewmodel/mw.echo.dm.NotificationList.js
+++ b/modules/viewmodel/mw.echo.dm.NotificationList.js
@@ -23,4 +23,4 @@
        OO.initClass( mw.echo.dm.NotificationList );
        OO.mixinClass( mw.echo.dm.NotificationList, OO.EventEmitter );
        OO.mixinClass( mw.echo.dm.NotificationList, mw.echo.dm.List );
-} )( mediaWiki );
+}( mediaWiki ) );
diff --git a/modules/viewmodel/mw.echo.dm.NotificationsModel.js 
b/modules/viewmodel/mw.echo.dm.NotificationsModel.js
index 4904297..28cc7e6 100644
--- a/modules/viewmodel/mw.echo.dm.NotificationsModel.js
+++ b/modules/viewmodel/mw.echo.dm.NotificationsModel.js
@@ -439,4 +439,4 @@
        mw.echo.dm.NotificationsModel.prototype.getFetchNotificationPromise = 
function () {
                return this.apiHandler.getFetchNotificationPromise();
        };
-} )( mediaWiki, jQuery );
+}( mediaWiki, jQuery ) );
diff --git a/modules/viewmodel/mw.echo.dm.js b/modules/viewmodel/mw.echo.dm.js
index e7d7c70..638a8d2 100644
--- a/modules/viewmodel/mw.echo.dm.js
+++ b/modules/viewmodel/mw.echo.dm.js
@@ -1,4 +1,4 @@
 ( function ( mw ) {
        mw.echo = mw.echo || {};
        mw.echo.dm = {};
-} )( mediaWiki );
+}( mediaWiki ) );

-- 
To view, visit https://gerrit.wikimedia.org/r/253899
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I1c930a3b4a5439780e1474542663220f979b0b0b
Gerrit-PatchSet: 1
Gerrit-Project: mediawiki/extensions/Echo
Gerrit-Branch: master
Gerrit-Owner: Paladox <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to