From b9ea394c85d5004d1acf3f45793121e73579235b Mon Sep 17 00:00:00 2001 From: Alex Rickabaugh Date: Thu, 17 Sep 2015 15:28:11 -0700 Subject: [PATCH] docs(core): Add plnkr example for *ng-if. --- modules/angular2/src/core/directives/ng_if.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/core/directives/ng_if.ts b/modules/angular2/src/core/directives/ng_if.ts index 3656ae8a65..4a65ff7c05 100644 --- a/modules/angular2/src/core/directives/ng_if.ts +++ b/modules/angular2/src/core/directives/ng_if.ts @@ -8,7 +8,7 @@ import {isBlank} from 'angular2/src/core/facade/lang'; * If the expression assigned to `ng-if` evaluates to a false value then the element * is removed from the DOM, otherwise a clone of the element is reinserted into the DOM. * - * # Example: + * ### Example ([live demo](http://plnkr.co/edit/fe0kgemFBtmQOY31b4tw?p=preview)): * * ``` *