Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Gillardo committed Jul 18, 2017
1 parent 803ee0a commit cbe6ed5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/datetime-popup.component.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ngx-bootstrap-datetime-popup",
"version": "1.0.3",
"version": "1.0.4",
"description": "Datetime popup that uses ngx-bootstrap datePicker and timePicker",
"homepage": "https://github.com/gillardo/ngx-bootstrap-datetime-popup#readme",
"main": "lib\\datetime-popup.bundle.js",
Expand Down
4 changes: 2 additions & 2 deletions src/datetime-popup.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
@Component({
selector: 'datetime-popup',
template: `
<div class="dropdown" [ngClass]="{ 'show': showPopup }">
<ul class="dropdown-menu" role="menu" (offClick)="offClick($event)" [ngClass]="{ 'show': showPopup }">
<div class="dropdown" [ngClass]="{ 'show': showPopup === true }">
<ul class="dropdown-menu" role="menu" (offClick)="offClick($event)" [ngClass]="{ 'show': showPopup === true }">
<li class="my-2 mx-2">
<datepicker *ngIf="showDate" [(ngModel)]="value"
(selectionDone)="onDateChange($event)"
Expand Down

0 comments on commit cbe6ed5

Please sign in to comment.