mirror of https://github.com/OCA/web.git
Merge pull request #998 from hbrunn/10.0-web_shortcut-improvements
[web_shortcut] don't destroy debug mode; allow opening shortcut in new tabpull/1029/head
commit
2ef9053aa0
|
@ -26,7 +26,9 @@ odoo.define('web.shortcut', function (require) {
|
|||
var self = this;
|
||||
this._super();
|
||||
this.trigger('load');
|
||||
this.$el.on('click', '.oe_systray_shortcut_menu a', function () {
|
||||
this.$el.on('click', '.oe_systray_shortcut_menu a', function (e) {
|
||||
e.preventDefault();
|
||||
e.stopPropagation();
|
||||
self.click($(this));
|
||||
});
|
||||
},
|
||||
|
@ -88,6 +90,7 @@ odoo.define('web.shortcut', function (require) {
|
|||
return item instanceof ShortcutMenu;
|
||||
});
|
||||
}
|
||||
return this._super.apply(this, arguments);
|
||||
},
|
||||
show_application: function () {
|
||||
var self = this;
|
||||
|
|
|
@ -10,7 +10,7 @@
|
|||
</t>
|
||||
<t t-name="Systray.ShortcutMenu.Item">
|
||||
<li>
|
||||
<a href="#" t-att-data-id="shortcut.menu_id[0]" t-att-data-shortcut-id="shortcut.id">
|
||||
<a t-attf-href="/web#menu_id={{shortcut.menu_id[0]}}" t-att-data-id="shortcut.menu_id[0]" t-att-data-shortcut-id="shortcut.id">
|
||||
<t t-esc="shortcut.name"/>
|
||||
</a>
|
||||
</li>
|
||||
|
|
Loading…
Reference in New Issue