Browse Source

fixup! [MIG] web_responsive: Migrate to v10

Scroll control panel with page using CSS instead of jQuery.

jQuery scrolling caused scrollbar malfunction.
pull/740/head
Daniel Torres 8 years ago
committed by Angel Moya Pardo
parent
commit
cb95d5e815
  1. 6
      web_responsive/static/src/js/web_responsive.js
  2. 12
      web_responsive/static/src/less/main.less

6
web_responsive/static/src/js/web_responsive.js

@ -88,12 +88,6 @@ odoo.define('web_responsive', function(require) {
'a.oe_logo, ' +
'i.oe_logo_edit'
);
$('.o_content').scroll(function() {
$('.o_control_panel').css(
'margin-top',
-$(this).scrollTop() + 'px'
);
});
$clickZones.click($.proxy(this.handleClickZones, this));
core.bus.on('resize', this, this.handleWindowResize);
core.bus.on('keydown', this, this.handleNavKeys);

12
web_responsive/static/src/less/main.less

@ -44,3 +44,15 @@ main {
.o_tooltip.active {
z-index: 1051;
}
.o_web_client {
>.o_main {
overflow: auto;
> .o_main_content {
overflow: initial;
> .o_content {
overflow: initial;
}
}
}
}
Loading…
Cancel
Save