mirror of
https://github.com/mathew-kurian/Scribe.js
synced 2025-04-25 06:45:10 +00:00
22 lines
469 B
JavaScript
22 lines
469 B
JavaScript
(function () {
|
|
|
|
'use strict';
|
|
|
|
window.app.directive('block', [function () {
|
|
|
|
return {
|
|
scope : {
|
|
type : "=",
|
|
message : "=",
|
|
messageTop : "=",
|
|
messageBottom : "=",
|
|
forceFile : "="
|
|
},
|
|
restrict : "E",
|
|
templateUrl : 'partials/elements/blocks.html',
|
|
replace : true
|
|
};
|
|
|
|
}]);
|
|
|
|
}());
|