Skip to content

Instantly share code, notes, and snippets.

@sirgalleto
Created April 1, 2015 04:35
Show Gist options
  • Save sirgalleto/0cb8cb1c4d2d57746c6d to your computer and use it in GitHub Desktop.
Save sirgalleto/0cb8cb1c4d2d57746c6d to your computer and use it in GitHub Desktop.
(function(){
'use strict';
angular
.module('module')
.directive('soComents', soComents);
function soComents(){
return{
restrict: 'E',
template: 'views/webcomponents/soComents',
scope: {
coments: '@'
}
};
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment