* Switching back to module system for FSE... broken now, but hopefully this model sticks
This commit is contained in:
23
mods/msg_area_post_fse.js
Normal file
23
mods/msg_area_post_fse.js
Normal file
@@ -0,0 +1,23 @@
|
||||
/* jslint node: true */
|
||||
'use strict';
|
||||
|
||||
var FullScreenEditorModule = require('../core/fse.js').FullScreenEditorModule;
|
||||
|
||||
exports.getModule = AreaPostFSEModule;
|
||||
|
||||
exports.moduleInfo = {
|
||||
name : 'Message Area Post',
|
||||
desc : 'Module posting a new message to an area',
|
||||
author : 'NuSkooler',
|
||||
};
|
||||
|
||||
function AreaPostFSEModule(options) {
|
||||
FullScreenEditorModule.call(this, options);
|
||||
|
||||
// we're posting, so always start with 'edit' mode
|
||||
this.editorMode = 'edit';
|
||||
|
||||
}
|
||||
|
||||
require('util').inherits(AreaPostFSEModule, FullScreenEditorModule);
|
||||
|
||||
Reference in New Issue
Block a user