Fixed potential problem in web_test_demo

bzr revid: nicolas.vanhoren@openerp.com-20130726154454-9hu2gpxcz4ynhmkj
This commit is contained in:
niv-openerp 2013-07-26 17:44:54 +02:00
parent a02da32a08
commit 861186d136
1 changed files with 2 additions and 2 deletions

View File

@ -1,11 +1,11 @@
// static/src/js/demo.js
openerp.web_tests_demo = function (instance) {
instance.web_tests_demo = {
_.extend(instance.web_tests_demo, {
value_true: true,
SomeType: instance.web.Class.extend({
init: function (value) {
this.value = value;
}
})
};
});
};