From 4995d80bc9cb60827ed137ac9adda93d865681f0 Mon Sep 17 00:00:00 2001 From: Drew Rygh Date: Wed, 9 Dec 2015 15:59:40 -0600 Subject: [PATCH] docs(blur): description --- demos/blur/main.html | 2 +- ionic/components/blur/blur.ts | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/demos/blur/main.html b/demos/blur/main.html index 420478fa8c..3b5da2338e 100644 --- a/demos/blur/main.html +++ b/demos/blur/main.html @@ -7,7 +7,7 @@ -
" +

Blurred!

diff --git a/ionic/components/blur/blur.ts b/ionic/components/blur/blur.ts index 798731b47d..928a62142f 100644 --- a/ionic/components/blur/blur.ts +++ b/ionic/components/blur/blur.ts @@ -1,5 +1,12 @@ import {Directive, Renderer, ElementRef} from 'angular2/angular2'; + +/** + * The blur attribute applies the CSS blur attribute to an element. If the CSS attribute is not supported, + * it will fall back to applying a semi-transparent background color to the element. + * + * @demo /docs/v2/demos/blur/ + */ @Directive({ selector: '[ion-blur]' })