File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -35,9 +35,11 @@ def __init__(self):
35
35
{% endmacro %}
36
36
37
37
{% macro html(this,kwargs) %}
38
- <img id="{{this.get_name()}}" alt="scroll"
39
- src="https://cdnjs.cloudflare.com/ajax/libs/ionicons/1.5.2/png/512/arrow-move.png"
40
- onclick="{{this._parent.get_name()}}.toggleScroll()"></img>
38
+ <img id="{{this.get_name()}}" alt="scroll"
39
+ src="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/png/512/arrow-move.png"
40
+ style="z-index: 999999"
41
+ onclick="{{this._parent.get_name()}}.toggleScroll()">
42
+ </img>
41
43
{% endmacro %}
42
44
43
45
{% macro script(this,kwargs) %}
Original file line number Diff line number Diff line change @@ -21,7 +21,8 @@ def test_scroll_zoom_toggler():
21
21
# Verify that the div has been created.
22
22
tmpl = Template ("""
23
23
<img id="{{this.get_name()}}" alt="scroll"
24
- src="https://cdnjs.cloudflare.com/ajax/libs/ionicons/1.5.2/png/512/arrow-move.png"
24
+ src="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/png/512/arrow-move.png"
25
+ style="z-index: 999999"
25
26
onclick="{{this._parent.get_name()}}.toggleScroll()"></img>
26
27
""" )
27
28
assert '' .join (tmpl .render (this = szt ).split ()) in '' .join (out .split ())
You can’t perform that action at this time.
0 commit comments