Skip to content
This repository was archived by the owner on Feb 22, 2018. It is now read-only.

Commit d5f45a6

Browse files
author
Chris Calabro
committed
fix(ng_show_hide): make NG_HIDE_CLASS const
1 parent 4bed785 commit d5f45a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/directive/ng_show_hide.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ part of angular.directive;
88
selector: '[ng-hide]',
99
map: const {'ng-hide': '=>hide'})
1010
class NgHide {
11-
static String NG_HIDE_CLASS = 'ng-hide';
11+
static const NG_HIDE_CLASS = 'ng-hide';
1212

1313
final dom.Element element;
1414
final Animate animate;

0 commit comments

Comments
 (0)