Skip to content

Commit dbfa0a7

Browse files
committed
Directive doesn't need to be terminal anymore
See #132
1 parent 9cb65e0 commit dbfa0a7

File tree

3 files changed

+1
-3
lines changed

3 files changed

+1
-3
lines changed

dist/angular-gettext.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ angular.module('gettext').directive('translate', ["gettextCatalog", "$parse", "$
150150

151151
return {
152152
restrict: 'AE',
153-
terminal: true,
154153
compile: function compile(element, attrs) {
155154
// Validate attributes
156155
assert(!attrs.translatePlural || attrs.translateN, 'translate-n', 'translate-plural');

dist/angular-gettext.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/directive.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ angular.module('gettext').directive('translate', function (gettextCatalog, $pars
2222

2323
return {
2424
restrict: 'AE',
25-
terminal: true,
2625
compile: function compile(element, attrs) {
2726
// Validate attributes
2827
assert(!attrs.translatePlural || attrs.translateN, 'translate-n', 'translate-plural');

0 commit comments

Comments
 (0)