Skip to content

Commit

Permalink
fix(dropdown): incorrect import from *.ts, fixes #88
Browse files Browse the repository at this point in the history
  • Loading branch information
valorkin committed Jan 19, 2016
1 parent 184cb0f commit 6eb42e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/dropdown/dropdown-keyboard-nav.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {Directive, ElementRef} from 'angular2/core';
import {Dropdown} from './dropdown.directive.ts';
import {Dropdown} from './dropdown.directive';

@Directive({
selector: '[dropdown][dropdownKeyboardNav]',
Expand Down
2 changes: 1 addition & 1 deletion components/dropdown/dropdown-toggle.directive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {
OnInit, Input, HostBinding, HostListener
} from 'angular2/core';

import {Dropdown} from './dropdown.directive.ts';
import {Dropdown} from './dropdown.directive';

@Directive({ selector: '[dropdownToggle]' })
export class DropdownToggle implements OnInit {
Expand Down
2 changes: 1 addition & 1 deletion components/dropdown/dropdown.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export const ALWAYS = 'always';
export const DISABLED = 'disabled';
export const OUTSIDECLICK = 'outsideClick';

import {Dropdown} from './dropdown.directive.ts';
import {Dropdown} from './dropdown.directive';

export class DropdownService {
private openScope:Dropdown;
Expand Down

0 comments on commit 6eb42e1

Please sign in to comment.