Angular: Empty Fiddle

http://angularjs.org/

by Michele Marcucci

HTML

<script src="http://code.angularjs.org/angular-1.0.1.js"></script>
<div ng-controller="MyCtrl">
<div class="userProfileItem userProfileImage" ng-style="{'background': url('{{vm.currentUser.profileImagePath}}')}">hello</div>
</div>

JavaScript

var myApp = angular.module('myApp', []);

function MyCtrl($scope) {
$scope.vm = {currentUser: {profileImagePath: 'http://www.hiltonhawaiianvillage.com/assets/img/discover/oahu-island-activities/HHV_Oahu-island-activities_Content_Beaches_455x248_x2.jpg'}};
	
}