Skip to content

Instantly share code, notes, and snippets.

@jrgleason
Created March 23, 2015 18:14
Show Gist options
  • Save jrgleason/650c22a9a11ee03ff545 to your computer and use it in GitHub Desktop.
Save jrgleason/650c22a9a11ee03ff545 to your computer and use it in GitHub Desktop.
app = angular.module('plunker')
var test = "test"
app.run(function($rootScope){
$scope = $roowScope.$new();
$scope.test = test;
$scope.$watch('test' function(){
//Do something
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment