Skip to content
This repository has been archived by the owner on Sep 6, 2021. It is now read-only.

Commit

Permalink
fix merge issues
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonsanjose committed May 10, 2012
1 parent 5c4f962 commit 41fc773
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions src/utils/ViewUtils.js
Expand Up @@ -146,13 +146,12 @@ define(function (require, exports, module) {
$scrollElement = $(scrollElement);

// remove scrollerShadow elements from DOM
$displayElement.find(".scrollerShadow.top").remove();
$displayElement.find(".scrollerShadow.bottom").remove();
$displayElement.find(".scroller-shadow.top").remove();
$displayElement.find(".scroller-shadow.bottom").remove();

// remove event handlers
$scrollElement.off("scroll.scrollerShadow");
$displayElement.off("contentChanged.scrollerShadow");
$(displayElement).triggerHandler("remove-scroller-shadow");
$scrollElement.off("scroll.scroller-shadow");
$displayElement.off("contentChanged.scroller-shadow");
}

/**
Expand Down

0 comments on commit 41fc773

Please sign in to comment.