
|
If you were logged in you would be able to see more operations.
|
|
|
| Severity: |
Minor
|
| Fixed in Change#: |
6,142
|
| Runtime: |
N/A
|
| Flags: |
External
|
| Fix in hand: |
True
|
|
For better performance, <list> should disable "autoscroll" as soon as "destroy" is called.
[code]
<!--- @keywords private -->
<method name="destroy" ><![CDATA[
if (this.autoscrollbar)
this.setAttribute("autoscrollbar", false);
super.destroy.apply(this, arguments);
]]></method>
[/code]
|
|
Description
|
For better performance, <list> should disable "autoscroll" as soon as "destroy" is called.
[code]
<!--- @keywords private -->
<method name="destroy" ><![CDATA[
if (this.autoscrollbar)
this.setAttribute("autoscrollbar", false);
super.destroy.apply(this, arguments);
]]></method>
[/code] |
Show » |
|
[code]
<!--- @keywords private -->
<method name="destroy" ><![CDATA[
if (this.autoscrollbar)
this.setAttribute("autoscrollbar", false);
if (this.shownitems != -1)
this.setAttribute("shownitems", -1);
super.destroy.apply(this, arguments);
]]></method>
[/code]