xmpp.chapril.org-conversejs/src/converse-headline.js

29 lines
759 B
JavaScript
Raw Normal View History

// 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) {
2016-03-13 17:16:53 +01:00
define("converse-headline", [
"converse-core",
"converse-api",
// TODO: remove this dependency
"converse-chatview"
2016-03-13 17:16:53 +01:00
], factory);
}(this, function (converse, converse_api) {
"use strict";
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
}
});
}));