1
0
mirror of https://github.com/vichan-devel/vichan.git synced 2024-11-24 15:40:12 +01:00

use onready in post-menu.js

This commit is contained in:
8chan 2015-02-28 05:09:37 -08:00
parent a77d045bf0
commit 93e5ff99fc

View File

@ -26,7 +26,7 @@
* $config['additional_javascript'][] = 'js/jquery.min.js';
* $config['additional_javascript'][] = 'js/post-menu.js';
*/
(function () {
onready(function () {
var List = function (menuId, text) {
this.id = menuId;
@ -206,4 +206,4 @@ $(document).on('new_post', function (e, post) {
});
window.Menu = Menu;
})();
});