I\'m working on a Chrome extension with Angular and I\'m trying to use ng-repeat
to create a list of links. Works great except I\'m having issues populating the
I also face the same issue now. Have not found any solution. Please check this link: https://groups.google.com/forum/?fromgroups=#!topic/angular/YiP02I1wkNU.
Follow this, check the app.js on http://plnkr.co/edit/prTGFiheFI7GXNoDhoGT?p=preview
Code like:
var app = angular.module('angularjs-starter', []);
app.config(function($compileProvider){ $compileProvider.urlSanitizationWhitelist(/^\s*(https?|ftp|mailto|file|chrome-extension):/); });
It works for me.