Skip to content

Instantly share code, notes, and snippets.

@maggocnx
Forked from zergin/controller.js
Created August 5, 2014 09:44
Show Gist options
  • Save maggocnx/f67f3aa6d55b7900872c to your computer and use it in GitHub Desktop.
Save maggocnx/f67f3aa6d55b7900872c to your computer and use it in GitHub Desktop.
$scope.$on('$viewContentLoaded', function() {
$scope._style = document.createElement('link');
$scope._style.type = 'text/css';
$scope._style.href = 'application/Invoice/Resource/single.css';
$scope._style.rel = 'stylesheet';
$scope._style = document.head.appendChild($scope._style);
});
$scope.$on('$destroy', function() {
$scope._style.parentNode.removeChild($scope._style);
delete $scope._style;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment