mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
If you're using a tablet and click on the ➕ or ➖ buttons created by this module, the result was that the numeric input related to that button got focused. On tablets, that means that the on-screen keyboard pops up. This usually triggers a layout recalculation and becomes clunky. Besides, it's useless, because if you wanted to use the keyboard, you'd have clicked on the input by yourself, and not in one of those buttons. After this change, when using a touch screen, if you click on the +/- buttons, you won't auto-focus on the input. Thus, the keyboard won't show up. @moduon MT-4472
22 lines
623 B
Python
22 lines
623 B
Python
# Copyright 2019 GRAP - Quentin DUPONT
|
|
# Copyright 2020 Tecnativa - Alexandre Díaz
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)
|
|
|
|
{
|
|
"name": "Web Widget Numeric Step",
|
|
"category": "web",
|
|
"version": "16.0.1.1.1",
|
|
"author": "GRAP, Tecnativa, " "Odoo Community Association (OCA)",
|
|
"license": "AGPL-3",
|
|
"website": "https://github.com/OCA/web",
|
|
"depends": ["web"],
|
|
"assets": {
|
|
"web.assets_backend": [
|
|
"web_widget_numeric_step/static/src/*",
|
|
],
|
|
},
|
|
"maintainers": ["rafaelbn", "yajo"],
|
|
"auto_install": False,
|
|
"installable": True,
|
|
}
|