Currently we need to access vis object from global scope, for angular, should we make a service wrapper for vis object?
.factory('vis', ['$window', function($window) {
if (!$window.vis) {
console.log("error loading library");
return {};
}
return $window.vis;
}])