Scribe.js/static/js/directives/block.js

23 lines
469 B
JavaScript
Raw Normal View History

2014-11-11 21:20:33 +01:00
(function () {
'use strict';
window.app.directive('block', [function () {
return {
scope : {
type : "=",
message : "=",
messageTop : "=",
messageBottom : "=",
forceFile : "="
},
restrict : "E",
templateUrl : 'partials/elements/blocks.html',
replace : true
};
}]);
}());