| 1234567891011121314151617 | 
							- /**
 -  * 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) {
 -                 }
 -             };
 -         }]);
 
 
  |