Skip to content
This repository has been archived by the owner on Oct 13, 2023. It is now read-only.

Commit

Permalink
merge from #448 disable Ivy
Browse files Browse the repository at this point in the history
  • Loading branch information
oferh committed Apr 9, 2020
1 parent f7a33d1 commit df52922
Show file tree
Hide file tree
Showing 5 changed files with 224 additions and 204 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## 9.0.0(2020-03-03)
## 9.0.1(2020-04-09)
- Upgrade to angular 9
- Follow angular version numbers
- Disable Ivy PR #448
-

## 3.0.3 (2019-11-09)
- Removed rxjs-compat dependency #435
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@
"compodoc": "compodoc -p tsconfig.json",
"compodoc-serve": "compodoc -s",
"start": "cross-env webpack-dev-server --inline --progress --port 8080",
"deploy:gh-pages": "npm run build:demo:prod && cross-env ./node_modules/.bin/gh-pages -d dist/demo",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points"
"deploy:gh-pages": "npm run build:demo:prod && cross-env ./node_modules/.bin/gh-pages -d dist/demo"
},
"typings": "./ng2-completer.d.ts",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/directives/ctr-dropdown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export class CtrDropdown implements CompleterDropdown, OnDestroy, AfterViewInit
}

private dropdownRowOffsetHeight(row: any) {
let css = getComputedStyle(row.parentElement);
const css = getComputedStyle(row.parentElement);
return row.parentElement.offsetHeight +
parseInt(css.marginTop as string, 10) + parseInt(css.marginBottom as string, 10);
}
Expand Down
2 changes: 1 addition & 1 deletion src/directives/ctr-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ export class CtrInput {

private restoreSearchValue() {
if (this.fillHighlighted) {
if (this._displayStr != this.searchStr) {
if (this._displayStr !== this.searchStr) {
this._displayStr = this.searchStr;
this.ngModelChange.emit(this.searchStr);
}
Expand Down
Loading

0 comments on commit df52922

Please sign in to comment.