mediawiki-extensions-Relate.../resources/ext.relatedArticles.cards/init.js
jdlrobson 6dee0147f4 Migrate Cards code to RelatedArticles
* Move across all files
* Rename ext-card- prefix to ext-related-articles- prefix
** Since all code using these prefixes is JS
  we do not have to worry about cached HTML

Bug: T137021
Change-Id: I784fd132c36329fa0dcc49fe2804460061940347
2017-06-07 08:35:53 -07:00

13 lines
143 B
JavaScript

( function ( mw ) {
'use strict';
/**
* @class mw.cards
* @singleton
*/
mw.cards = {
models: {},
views: {}
};
}( mediaWiki ) );