{“version”:3,“sources”:,“names”:[],“mappings”:“8GAW6B,WAAQ,SAAA,EAAA,SAER,EAAQ,sDAEd,EAAA,yBAEnB,EAAa,EAAA,sBACF,EAAsB,4BACb,EAAA,yBACK,EAAA,wCAGzB,EAAA,WACM,GACJ,GAAA,GAAO,EAAW,SAChB,mBAIN,SAAI,sBAEJ,OAAO”,“file”:“raf.min.js”,“sourcesContent”:[“‘use strict’;nn(angular.version.minor < 3 && angular.version.dot < 14) && angular.module(‘ng’)nn.factory(‘$$rAF’, function($window, $timeout) {nn var requestAnimationFrame = $window.requestAnimationFrame ||n $window.webkitRequestAnimationFrame ||n $window.mozRequestAnimationFrame;nn var cancelAnimationFrame = $window.cancelAnimationFrame ||n $window.webkitCancelAnimationFrame ||n $window.mozCancelAnimationFrame ||n $window.webkitCancelRequestAnimationFrame;nn var rafSupported = !!requestAnimationFrame;n var raf = rafSupported ?n function(fn) {n var id = requestAnimationFrame(fn);n return function() {n cancelAnimationFrame(id);n };n } :n function(fn) {n var timer = $timeout(fn, 16.66, false); // 1000 / 60 = 16.666n return function() {n $timeout.cancel(timer);n };n };nn raf.supported = rafSupported;nn return raf;nn});nn// .factory(‘$$animateReflow’, function($$rAF, $document) {nn// var bodyEl = $document.body;nn// return function(fn) {n// //the returned function acts as the cancellation functionn// return $$rAF(function() {n// //the line below will force the browser to perform a repaintn// //so that all the animated elements within the animation framen// //will be properly updated and drawn on screen. This isn// //required to perform multi-class CSS based animations withn// //Firefox. DO NOT REMOVE THIS LINE.n// var a = bodyEl.offsetWidth + 1;n// fn();n// });n// };nn// });n”],“sourceRoot”:“/source/”}