
| Key: |
LPP-4149
|
| Type: |
Bug
|
| Status: |
Closed
|
| Resolution: |
Fixed
|
| Priority: |
P2
|
| Assignee: |
Unassigned
|
| Reporter: |
Henry Minsky
|
| Votes: |
0
|
| Watchers: |
0
|
|
If you were logged in you would be able to see more operations.
|
|
|
| Severity: |
Minor
|
| Fixed in Change#: |
5,488
|
| Runtime: |
N/A
|
| Fix in hand: |
False, True
|
|
Fix:
lps/components/base/basescrollbar.lzx add check for whether scrolltarget exists before referencing it
<method name="targetSizeUpdate">
<![CDATA[
if (this.scrolltarget) {
var sm = this.scrolltarget[this.sizeAxis];
if (this.othersb && this.othersb.visible) {
sm += this[this.otherSizeAxis];
}
this.setAttribute("scrollmax", sm);
this.scrollbarSizeUpdate();
}
]]>
</method>
|
|
Description
|
Fix:
lps/components/base/basescrollbar.lzx add check for whether scrolltarget exists before referencing it
<method name="targetSizeUpdate">
<![CDATA[
if (this.scrolltarget) {
var sm = this.scrolltarget[this.sizeAxis];
if (this.othersb && this.othersb.visible) {
sm += this[this.otherSizeAxis];
}
this.setAttribute("scrollmax", sm);
this.scrollbarSizeUpdate();
}
]]>
</method> |
Show » |
|