tellform/public/modules/forms/admin/directives/share-form.client.directive.js

16 lines
467 B
JavaScript
Raw Normal View History

2017-10-30 19:00:30 +00:00
'use strict';
angular.module('forms').directive('shareFormDirective', ['$rootScope',
function ($rootScope) {
return {
templateUrl: 'modules/forms/admin/views/directiveViews/form/share-form.client.view.html',
restrict: 'E',
scope: {
actualformurl:'='
},
controller: function($scope){
$scope.actualFormURL = $scope.actualformurl;
}
};
}
]);