Commit 49a0cb12 by Dányi Bence

webui: bind after document loaded

parent c49a6319
......@@ -472,7 +472,9 @@ var cloud = (function(cloud) {
loadFolder(self.currentPath());
}
var model = new Model();
ko.applyBindings(model);
$(function(){
ko.applyBindings(model);
});
document.addEventListener('dragenter', function(e) {
e.stopPropagation();
e.preventDefault();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment