Skip to content

Commit 26b8aac

Browse files
committed
material-class formatting
1 parent 8817bb5 commit 26b8aac

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/material-class.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
angular.module('schemaForm').directive('sfMaterialClass', function($compile, $timeout) {
1+
angular.module('schemaForm').directive('sfMaterialClass', sfMaterialClassDirective);
2+
3+
sfMaterialClassDirective.$inject = [
4+
'$compile', '$timeout'
5+
];
6+
7+
function sfMaterialClassDirective($compile, $timeout) {
28
return {
39
restrict : 'A',
410
scope : false,
@@ -21,4 +27,4 @@ angular.module('schemaForm').directive('sfMaterialClass', function($compile, $ti
2127
}, 0);
2228
}
2329
};
24-
});
30+
}

0 commit comments

Comments
 (0)