Create an AngularJS directive for dyframe.js.
Usage:
<dyframe df-html="html" df-width="width" df-profile="profile"></dyframe>
angular.module('myApp', ['angularDyframe'])
.controller('MyController', function ($scope) {
$scope.html = '<html><body>Hello, world!</body></html>';
$scope.width = 1200;
$scope.profile = 'smartphone';
});
Create an AngularJS directive for dyframe.js.
Usage: