[FIX] Need to load all js files for calendar, gantt, graph view.

bzr revid: sma@tinyerp.com-20110802061030-eqvqab8ruwxjhpuy
This commit is contained in:
sma (Tiny) 2011-08-02 11:40:30 +05:30
parent f61dadb849
commit 72f7aa772e
1 changed files with 2 additions and 2 deletions

View File

@ -250,9 +250,9 @@ openerp.base.Session = openerp.base.Widget.extend( /** @lends openerp.base.Sessi
if ( (tag.readyState && tag.readyState != "loaded" && tag.readyState != "complete") || tag.onload_done )
return;
tag.onload_done = true;
self.do_load_js(files);
};
document.head.appendChild(tag);
$('head').append(tag);
self.do_load_js(files);
} else {
this.on_modules_loaded();
}