Skip to content

Commit

Permalink
fix for #3&#4
Browse files Browse the repository at this point in the history
  • Loading branch information
MrFrankel committed Aug 10, 2017
1 parent 230dc6e commit f65d3dc
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-popper",
"version": "1.0.0",
"version": "1.0.1",
"description": "ngx-popper is an angular wrapper for popper.js",
"main": "src/index.js",
"module": "esm/index.js",
Expand Down
6 changes: 3 additions & 3 deletions src/popper-content.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,11 +152,11 @@ export class PopperContent implements OnDestroy {

text: string;

private popperInstance: Popper;
popperInstance: Popper;

private displayType: string = "none";
displayType: string = "none";

private opacity: number = 0;
opacity: number = 0;

@ViewChild("popperViewRef")
popperViewRef: ElementRef;
Expand Down
2 changes: 0 additions & 2 deletions src/popper.module.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,10 @@
import {BrowserModule} from '@angular/platform-browser';
import {CommonModule} from "@angular/common";
import {NgModule} from "@angular/core";
import {PopperController} from './popper';
import {PopperContent} from './popper-content';

@NgModule({
imports: [
BrowserModule,
CommonModule
],
declarations: [
Expand Down

0 comments on commit f65d3dc

Please sign in to comment.