For some experimenting, I need to put this Angular jQcloud at Plunker. I have put all the necessary codes provided by the plugin, still don't understand why that text cloud hasn't come at plunker. Can you please tell me what I have missed?
HTML:
<html ng-app="app" ng-controller="myCtrl">
<body>
<jqcloud words="words" width="500" height="350" steps="7"></jqcloud>
</body>
</html>
JS:
var app = angular.module('app', ['angular-jqcloud']);
app.controller('myCtrl', function ($scope) {
$scope.words = [/* ... */];
});