/** * Created by robin on 02/22/17. */ angular.module('app') .directive('article', [ function () { return { restrict: 'E', require: 'ngModel', templateUrl: 'views/directives/article.html', scope: { 'ngModel': '=' }, link: function ($scope, elm, attr, ctrl) { } }; }]);