Skip to content

Commit

Permalink
fix(directive): Fix Dynamic directive ti work without Dynamic component
Browse files Browse the repository at this point in the history
  • Loading branch information
gund committed Feb 16, 2017
1 parent 4b46f2f commit 0432d4a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ng-dynamic-component",
"version": "0.0.2",
"version": "0.0.3",
"description": "Dynamic components with full life-cycle support for inputs and outputs",
"main": "dist/bundles/ng-dynamic-component.umd.js",
"module": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/dynamic/dynamic.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
import { Subject } from 'rxjs/Subject';

@Directive({
selector: '[ndcDynamic], ndc-dynamic'
selector: '[ndcDynamicInputs], [ndcDynamicOutputs]'
})
export class DynamicDirective implements OnChanges, DoCheck, OnDestroy {

Expand Down

0 comments on commit 0432d4a

Please sign in to comment.