Files
simple-bookreader/client/core/config/config.bt.js
Oleg Mokhov f3546ef3a5 Release
2015-06-20 14:48:34 +05:00

9 lines
257 B
JavaScript

module.exports = function (bt) {
bt.match('config', function (ctx) {
ctx.setTag('script');
ctx.setAttr('id', 'config');
ctx.setAttr('type', 'text/json');
ctx.setContent(JSON.stringify(ctx.getParam('config')));
});
};