From e48cec4e3f4f8f2f6277900f023bc019b81169c4 Mon Sep 17 00:00:00 2001 From: Jeremy Danyow Date: Sat, 27 Feb 2016 18:11:52 -0500 Subject: [PATCH] fix(hide): export hide fixes #192 --- src/aurelia-templating-resources.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/aurelia-templating-resources.js b/src/aurelia-templating-resources.js index 7ba914e..98c530c 100644 --- a/src/aurelia-templating-resources.js +++ b/src/aurelia-templating-resources.js @@ -3,6 +3,7 @@ import {If} from './if'; import {With} from './with'; import {Repeat} from './repeat'; import {Show} from './show'; +import {Hide} from './hide'; import {SanitizeHTMLValueConverter} from './sanitize-html'; import {Replaceable} from './replaceable'; import {Focus} from './focus'; @@ -33,6 +34,7 @@ function configure(config) { './with', './repeat', './show', + './hide', './replaceable', './sanitize-html', './focus', @@ -84,6 +86,7 @@ export { With, Repeat, Show, + Hide, HTMLSanitizer, SanitizeHTMLValueConverter, Replaceable,