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

Commit

Permalink
fix(ng_show_hide): make NG_HIDE_CLASS const
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Calabro committed Jun 24, 2015
1 parent 4bed785 commit d5f45a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/directive/ng_show_hide.dart
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ part of angular.directive;
selector: '[ng-hide]',
map: const {'ng-hide': '=>hide'})
class NgHide {
static String NG_HIDE_CLASS = 'ng-hide';
static const NG_HIDE_CLASS = 'ng-hide';

final dom.Element element;
final Animate animate;
Expand Down

0 comments on commit d5f45a6

Please sign in to comment.