2015-09-13 00:18:46 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
var FullScreenEditorModule = require('./fse.js').FullScreenEditorModule;
|
2015-09-13 00:18:46 +00:00
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
exports.getModule = AreaReplyFSEModule;
|
2015-09-13 00:18:46 +00:00
|
|
|
|
|
|
|
exports.moduleInfo = {
|
2018-06-23 03:26:46 +00:00
|
|
|
name : 'Message Area Reply',
|
|
|
|
desc : 'Module for replying to an area message',
|
|
|
|
author : 'NuSkooler',
|
2015-09-13 00:18:46 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
function AreaReplyFSEModule(options) {
|
2018-06-22 05:15:04 +00:00
|
|
|
FullScreenEditorModule.call(this, options);
|
2015-09-13 00:18:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
require('util').inherits(AreaReplyFSEModule, FullScreenEditorModule);
|