Angular 1.4: Empty Fiddle
http://angularjs.org/
Ready to start playing with angular in your browser
HTML
<div ng-controller="MyCtrl">
<img itemprop="image" ng-src={{image_url}}>
</div>
CSS
</style> <!-- Ugly Hack due to jsFiddle issue: http://goo.gl/BUfGZ -->
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0-rc.1/angular.js"></script>
<script src="https://code.angularjs.org/1.4.0-rc.1/angular-animate.js"></script>
<style>
JavaScript
var app = angular.module('App',[])
app.controller('MyCtrl', [
'$scope',
function (
$scope
) {
$scope.html = '<h1>Testing</h1>';
$scope.image_url = "https://jsfiddle.net/img/[email protected]"
}
])