ep_profile_modal
Version:
profile modal for Etherpad
17 lines (13 loc) • 785 B
JavaScript
const eejs = require('ep_etherpad-lite/node/eejs/');
exports.eejsBlock_styles = (hook_name, args, cb) => {
args.content += eejs.require('ep_profile_modal/templates/styles.html', {}, module);
return [];
};
exports.eejsBlock_scripts = (hook_name, args, cb) => {
args.content += eejs.require('ep_profile_modal/templates/profileModal.html', {}, module);
args.content += eejs.require('ep_profile_modal/templates/contributors/contributors.html', {}, module);
args.content += eejs.require('ep_profile_modal/templates/general.html', {}, module);
args.content += eejs.require('ep_profile_modal/templates/profileForm/modalForm.html', {}, module);
args.content += eejs.require('ep_profile_modal/templates/userProfileSection/userProfileSection.html', {}, module);
return [];
};