Archived
1
0
This repository has been archived on 2023-08-12. You can view files and clone it, but cannot push or open issues or pull requests.
nntpchan/contrib/js/entry.js
2017-01-16 11:06:50 -05:00

13 lines
222 B
JavaScript

onready_callbacks = [];
function onready(fnc) {
onready_callbacks.push(fnc);
}
function ready(prefix) {
configRoot = prefix || "/";
for (var i = 0; i < onready_callbacks.length; i++) {
onready_callbacks[i]();
}
}