afterwriting
Version:
Post-processing tools for Fountain screenplays
26 lines (20 loc) • 642 B
JavaScript
define(function(require) {
var AppConfig = require('bootstrap/app-config'),
DevController = require('core/controller/dev-controller');
/**
* Development Config - extension of AppConfig with additional DevController.
*
* @module bootstrap/dev-config
* @augments module:bootstrap/app-config
*
* @tutorial bootstrap
*/
var DevConfig = AppConfig.extend({
testsSetup: null,
init: function(context) {
AppConfig.init.call(this, context);
context.register(DevController.create());
}
});
return DevConfig;
});