document.angularControllersInitializers.push(function(){angular.module("allSites").controller("stockFeedController",["$scope","$http",function(n,t){n.price=0;n.change=0;n.enabled=!1;n.init=function(){t({method:"GET",url:"/api/irexternal/getstockfeed"}).then(function(t){if(t.data.success){n.price=t.data.price;n.change=t.data.change;n.change<0&&(n.arrowClass="down");var i=document.getElementsByClassName("stock-feed");i.length&&(i[0].removeAttribute("style"),n.enabled=!0)}})}}])})