[IMP] rename client action 'reload_all' into 'reload'

bzr revid: rco@openerp.com-20120515120940-cmxvhk63j06judoq
This commit is contained in:
Raphael Collet 2012-05-15 14:09:40 +02:00
parent d007f0cf5d
commit 0a4dbe154c
1 changed files with 2 additions and 2 deletions

View File

@ -1321,9 +1321,9 @@ instance.web.client_actions = new instance.web.Registry();
/**
* Client action to reload the whole interface; refreshes the menu and reloads the current view
*/
instance.web.client_actions.add("reload_all", "instance.web.ReloadAll");
instance.web.client_actions.add("reload", "instance.web.Reload");
instance.web.ReloadAll = instance.web.Widget.extend({
instance.web.Reload = instance.web.Widget.extend({
start: function() {
window.location.reload();
}