Sunburst visualization of modal importance aerosol activation experiment results.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function fixScroll(handleName) { | |
$timeout(function(){ | |
var sv = $ionicScrollDelegate.$getByHandle(handleName).getScrollView(); | |
var container = sv.__container; | |
var originaltouchStart = sv.touchStart; | |
var originalmouseDown = sv.mouseDown; | |
var originaltouchMove = sv.touchMove; | |
var originalmouseMove = sv.mouseMove; | |
container.removeEventListener('touchstart', sv.touchStart); |
NewerOlder