I am learning AngularJS and have built a small application. Now that it\'s functionally complete, I\'d like to style it up using jQuery Mobile.
Originally I dropped
For me this worked:
html:
{{name}}
js:
angular.module('alertList', []) .directive('liJqMobile', function() { return function($scope, el) { $scope.$on('$viewContentLoaded', el.parent().listview('refresh')); });