mirror of
https://github.com/postgres/pgweb.git
synced 2025-07-29 11:59:36 +00:00

Could be made more efficient by combining some files, but tihs is just the /admin/ interface so not used very often.
9 lines
259 B
JavaScript
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);
|
|
}
|
|
}
|
|
}
|