Files
postgres-web/media/js/admin_pgweb.js
Magnus Hagander 436fcf837a Move scripts from admin changeform to their own JS file
Could be made more efficient by combining some files, but tihs is just
the /admin/ interface so not used very often.
2018-12-20 17:18:11 +01:00

9 lines
259 B
JavaScript

window.onload = function() {
tael = document.getElementsByTagName('textarea');
for (i = 0; i < tael.length; i++) {
if (tael[i].className.indexOf('markdown_preview') >= 0) {
attach_showdown_preview(tael[i].id, 1);
}
}
}