UNPKG

sheercms

Version:

Sheer Cliff CMS is a simple and powerful content management system (CMS) for Node JS.

25 lines (19 loc) 510 B
/* Sets the editor to the TinyMCE editor */ var express = require('express'); var path_mod = require('path'); module.exports.init = function(server, done) { //static files server.use('/cms/plugins/tinymce', express.static(path_mod.join(__dirname, 'public'))); done(); }; module.exports.getResources = function() { return { scripts: [ "/cms/plugins/tinymce/tinymce.min.js", "/cms/plugins/tinymce/angular.tinymce.js" ], styles: [] }; };