mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-22 07:42:49 +01:00
19 lines
387 B
JavaScript
19 lines
387 B
JavaScript
window.News = window.News || {};
|
|
|
|
|
|
(function (window, document, $, exports, undefined) {
|
|
'use strict';
|
|
|
|
var articleActionPlugins = [];
|
|
|
|
exports.addArticleAction = function (action) {
|
|
articleActionPlugins.push(action);
|
|
};
|
|
|
|
exports.getArticleActionPlugins = function () {
|
|
return articleActionPlugins;
|
|
};
|
|
|
|
})(window, document, jQuery, window.News);
|
|
|