fix accessibility scan bug (#461)
* fix accessibility scan error: user-scalable on <meta> tag disables zooming on mobile devices * update charts * update charts
This commit is contained in:
Родитель
5c1d96eed8
Коммит
99c319a58b
Различия файлов скрыты, потому что одна или несколько строк слишком длинны
|
@ -11,7 +11,9 @@ def plots_with_error_bars(width, height, title, data_frame, color='#4080A0'):
|
|||
('name', '@ids'),
|
||||
('mean', '@ys ± @error')
|
||||
])
|
||||
p = figure(plot_height=height, plot_width=width, title=title, tools=[hover])
|
||||
p = figure(title=title, tools=[hover])
|
||||
p.height = height
|
||||
p.width = width
|
||||
|
||||
ys = data_frame["mean"].values
|
||||
xs = list(range(len(ys)))
|
||||
|
|
|
@ -1,3 +1,5 @@
|
|||
azure-cosmos
|
||||
ipykernel>=6.20
|
||||
jupyter
|
||||
jupyter
|
||||
pandas
|
||||
bokeh
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
{% if page and page.canonical_url %}<link rel="canonical" href="{{ page.canonical_url }}">{% endif %}
|
||||
{% if config.site_favicon %}<link rel="shortcut icon" href="{{ base_url }}{{ config.site_favicon }}">
|
||||
{% else %}<link rel="shortcut icon" href="{{ base_url }}img/favicon.ico">{% endif %}
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
|
||||
{%- endblock %}
|
||||
|
||||
{%- block htmltitle %}
|
||||
|
|
Загрузка…
Ссылка в новой задаче