We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is an issue with a path separator to export/bbcode during build. It's not compatible with building in GNU/Linux
Basically the backslash is interpreted as escaping the b so it tries to render exportbcode
exportbcode
https://github.com/joakibj/tswcalc/blob/develop/src/javascript/tswcalc-export.js
var startExportBBCode = function() { collectAllSlotStates(); dust.render('export\bbcode', { slotState: dustSlotState(), summary: tswcalc.summary.collectAllStats() }, function(err, out) { if (err) { console.log(err); } el.export_textarea.attr('rows', '10'); el.export_textarea.html(out); }); };
The text was updated successfully, but these errors were encountered:
5c0964f
joakibj
No branches or pull requests
There is an issue with a path separator to export/bbcode during build. It's not compatible with building in GNU/Linux
Basically the backslash is interpreted as escaping the b so it tries to render
exportbcode
https://github.com/joakibj/tswcalc/blob/develop/src/javascript/tswcalc-export.js
The text was updated successfully, but these errors were encountered: