Skip to content

Instantly share code, notes, and snippets.

@vanduc1102
Created September 22, 2015 09:32
Show Gist options
  • Save vanduc1102/5fd772501fc31ba46078 to your computer and use it in GitHub Desktop.
Save vanduc1102/5fd772501fc31ba46078 to your computer and use it in GitHub Desktop.
wait until get element scope
if(!$scope.securityClassElementScope){
var watcher1 = $scope.$watch(function(){
return $element.find("#security-classes-multiple-search-and-select-edit-id").isolateScope();
},function(val){
if(val){
watcher1();
$scope.securityClassElementScope = val;
}
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment