xmpp.chapril.org-conversejs/src/converse-headline.js
2016-03-14 14:04:36 +00:00

33 lines
866 B
JavaScript

// Converse.js (A browser based XMPP chat client)
// http://conversejs.org
//
// Copyright (c) 2012-2016, Jan-Carel Brand <jc@opkode.com>
// Licensed under the Mozilla Public License (MPLv2)
//
/*global define */
(function (root, factory) {
define("converse-headline", [
"converse-core",
"converse-api",
// TODO: remove this dependency
"converse-chat"
], factory);
}(this, function (converse, converse_api) {
"use strict";
var utils = converse_api.env.utils,
_ = converse_api.env._,
__ = utils.__.bind(converse);
converse_api.plugins.add('headline', {
initialize: function () {
/* The initialize function gets called as soon as the plugin is
* loaded by converse.js's plugin machinery.
*/
// TODO
}
});
}));