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]'
})