Skip to content

Commit

Permalink
fix(package): jsonp and material issues (#113)
Browse files Browse the repository at this point in the history
* bug(highlight selected result): Fix typo that responsible of the loss of the selected result

* fix(jsonp and material issues): Stay at stables angular and angular material versions
  • Loading branch information
cbourget authored and mbarbeau committed Feb 17, 2017
1 parent 0c4d0ff commit dbe11ae
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@
},
"private": true,
"dependencies": {
"@angular/common": "^2.4.5",
"@angular/compiler": "^2.4.5",
"@angular/compiler-cli": "^2.4.5",
"@angular/core": "^2.4.5",
"@angular/forms": "^2.4.5",
"@angular/http": "^2.4.5",
"@angular/material": "^2.0.0-beta.1",
"@angular/platform-browser": "^2.4.5",
"@angular/platform-browser-dynamic": "^2.4.5",
"@angular/platform-server": "^2.4.5",
"@angular/common": "2.4.5",
"@angular/compiler": "2.4.5",
"@angular/compiler-cli": "2.4.5",
"@angular/core": "2.4.5",
"@angular/forms": "2.4.5",
"@angular/http": "2.4.5",
"@angular/material": "2.0.0-beta.1",
"@angular/platform-browser": "2.4.5",
"@angular/platform-browser-dynamic": "2.4.5",
"@angular/platform-server": "2.4.5",
"@angular/router": "^3.4.5",
"@ngrx/core": "^1.2.0",
"@ngrx/store": "^2.2.1",
Expand Down
2 changes: 1 addition & 1 deletion src/app/search/search-tool/search-tool.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
igoListItem
tabindex="{{i}}"
[focused]="focusedResult && focusedResult.id === result.id
&& focusedResult.source === sourceResults[0]"
&& focusedResult.source === sourceResult[0]"
[result]="result"
(focusItem)="focusResult(result)"
(selectItem)="selectResult(result)">
Expand Down

0 comments on commit dbe11ae

Please sign in to comment.