[FIX] web: debugger in previous commit

Damn you commit -a
This commit is contained in:
Martin Trigaux 2015-01-15 15:38:16 +01:00
parent fc9ce0bcff
commit 48002b3278
1 changed files with 0 additions and 6 deletions

View File

@ -1272,9 +1272,6 @@ openerp.TranslationDataBase = openerp.Class.extend(/** @lends instance.Translati
add_module_translation: function(mod) {
var self = this;
_.each(mod.messages, function(message) {
if (message.id === 'Create a product') {
debugger;
}
self.db[message.id] = message.string;
});
},
@ -1288,9 +1285,6 @@ openerp.TranslationDataBase = openerp.Class.extend(/** @lends instance.Translati
return fcnt;
},
get: function(key) {
if (key === 'Create a product') {
debugger;
}
return this.db[key];
},
/**