Skip to content

Commit

Permalink
Merge pull request #1 from NickToony/master
Browse files Browse the repository at this point in the history
Fixes
  • Loading branch information
dustinblanchard authored Dec 6, 2017
2 parents 79e985d + 0ba1869 commit 1a165f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/ang.datepicker.component.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<div class="datepicker" [ngStyle]="{'font-family': fontFamily}">
<div class="datepicker">

<div class="datepicker__calendar">
<div class="datepicker__calendar__nav">
Expand Down
4 changes: 2 additions & 2 deletions src/daterange.picker.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { CommonModule } from '@angular/common';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { HttpModule } from '@angular/http';
import { NgModule } from '@angular/core';
import { MatInputModule, MatCardModule, MatFormFieldModule } from '@angular/material';
import { MatInputModule, MatCardModule, MatFormFieldModule, MatButtonModule } from '@angular/material';

import { DaterangePickerComponent } from './ang.daterange.picker.component';
import { DatePickerComponent } from './ang.datepicker.component';
Expand All @@ -12,6 +12,6 @@ export * from './ang.daterange.picker.component';
@NgModule({
declarations: [ DaterangePickerComponent, DatePickerComponent ],
exports: [ DaterangePickerComponent ],
imports: [ CommonModule, FormsModule, HttpModule, ReactiveFormsModule, MatCardModule, MatInputModule, MatFormFieldModule ]
imports: [ CommonModule, FormsModule, HttpModule, ReactiveFormsModule, MatCardModule, MatInputModule, MatFormFieldModule, MatButtonModule ]
})
export class DaterangePickerModule { }

0 comments on commit 1a165f2

Please sign in to comment.