Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace el.scrollTo usage with doScrollTo (#167)
* dont use el.scrollTo, use doScrollTo I happen to have jquery.scrollTo installed which has a different api than your `scrollTo` method. It overwrites your method with its own. Your method takes params of (left, top, ... ) while their method is (top, ....) which is really bad. without this fix, I am forced to remove scrollTo and rewrite some legacy code to make use of your scrollTo method, which is ok, but not ideal. Also the bug this caused was hard to track down. * $window isnt an jqlite element :P
- Loading branch information