diff options
| author | Nathan Dinsmore <nathan@users.noreply.github.com> | 2015-06-17 21:11:04 -0400 |
|---|---|---|
| committer | Nathan Dinsmore <nathan@users.noreply.github.com> | 2015-06-17 21:11:04 -0400 |
| commit | aaa3c407bc54e61ba2944f97956a89bf76ad22d1 (patch) | |
| tree | 5d4eef4eda3dfdd46cf5cc384e9625ea2065d1da | |
| parent | f20ea6792688b97a8d9b50e9eed783e4773d9a86 (diff) | |
| download | snap-aaa3c407bc54e61ba2944f97956a89bf76ad22d1.tar.gz snap-aaa3c407bc54e61ba2944f97956a89bf76ad22d1.zip | |
Add a missing super call in overridden updateReferences()
| -rw-r--r-- | morphic.js | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -8895,8 +8895,9 @@ ScrollFrameMorph.prototype.mouseScroll = function (y, x) { // ScrollFrameMorph duplicating: -ScrollFrameMorph.prototype.updateReferences = function () { +ScrollFrameMorph.prototype.updateReferences = function (map) { var self = this; + ScrollFrameMorph.uber.updateReferences.call(this, map); if (this.hBar) { this.hBar.action = function (num) { self.contents.setPosition( |
