Move modules in mods into /core

This commit is contained in:
David Stephens
2017-11-24 23:23:15 +00:00
parent 57d46dd57e
commit 618ecc0714
28 changed files with 175 additions and 176 deletions

View File

@@ -0,0 +1,18 @@
/* jslint node: true */
'use strict';
var FullScreenEditorModule = require('./fse.js').FullScreenEditorModule;
exports.getModule = AreaReplyFSEModule;
exports.moduleInfo = {
name : 'Message Area Reply',
desc : 'Module for replying to an area message',
author : 'NuSkooler',
};
function AreaReplyFSEModule(options) {
FullScreenEditorModule.call(this, options);
}
require('util').inherits(AreaReplyFSEModule, FullScreenEditorModule);