Skip to content

Commit

Permalink
Upgrade packages and remove version ranges
Browse files Browse the repository at this point in the history
  • Loading branch information
brnsnt committed May 18, 2017
1 parent dc2ea42 commit 31f8c9a
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 34 deletions.
64 changes: 32 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,42 +10,42 @@
},
"private": true,
"dependencies": {
"@angular/animations": "^4.0.3",
"@angular/common": "^4.0.3",
"@angular/compiler": "^4.0.3",
"@angular/core": "^4.0.3",
"@angular/forms": "^4.0.3",
"@angular/http": "^4.0.3",
"@angular/platform-browser": "^4.0.3",
"@angular/platform-browser-dynamic": "^4.0.3",
"@angular/platform-server": "^4.0.3",
"@angular/router": "^4.0.3",
"@ngx-translate/core": "^6.0.0",
"@angular/animations": "4.1.3",
"@angular/common": "4.1.3",
"@angular/compiler": "4.1.3",
"@angular/core": "4.1.3",
"@angular/forms": "4.1.3",
"@angular/http": "4.1.3",
"@angular/platform-browser": "4.1.3",
"@angular/platform-browser-dynamic": "4.1.3",
"@angular/platform-server": "4.1.3",
"@angular/router": "4.1.3",
"@ngx-translate/core": "6.0.1",
"@ngx-translate/http-loader": "0.0.3",
"bootstrap": "^3.3.7",
"core-js": "^2.4.1",
"ng2-bootstrap": "^1.6.3",
"rxjs": "^5.3.0",
"typescript": "^2.2.2",
"zone.js": "^0.8.5"
"bootstrap": "3.3.7",
"core-js": "2.4.1",
"ng2-bootstrap": "1.6.3",
"rxjs": "5.4.0",
"typescript": "2.3.2",
"zone.js": "0.8.10"
},
"devDependencies": {
"@angular/cli": "^1.0.0",
"@angular/compiler-cli": "4.0.3",
"@types/jasmine": "2.5.38",
"@types/node": "~6.0.60",
"codelyzer": "~2.0.0",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"@angular/cli": "1.0.4",
"@angular/compiler-cli": "4.1.3",
"@types/jasmine": "2.5.47",
"@types/node": "7.0.18",
"codelyzer": "3.0.1",
"jasmine-core": "2.6.2",
"jasmine-spec-reporter": "4.1.0",
"karma": "1.7.0",
"karma-chrome-launcher": "2.1.1",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-coverage-istanbul-reporter": "1.2.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"ts-node": "~2.0.0",
"tslint": "~4.4.2",
"typedoc": "^0.5.7",
"typemoq": "~1.3.1"
"karma-jasmine-html-reporter": "0.2.2",
"ts-node": "3.0.4",
"tslint": "5.2.0",
"typedoc": "0.7.0",
"typemoq": "1.6.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export class FavoriteElementComponent implements OnInit {
/**
* Display the specified label text within a tooltip
* below favorite button.
*
*
* @param labelKey the key of the label to display
*/
private showTooltip(labelKey: string): void {
Expand Down Expand Up @@ -111,7 +111,7 @@ export class FavoriteElementComponent implements OnInit {
* Hide the tooltip immediately and clear a running timer
* which would hide the tooltip on completion.
*/
private onDropdownShown(): void {
public onDropdownShown(): void {
this.hideTooltip();
if (this.tooltipTimer) {
clearTimeout(this.tooltipTimer);
Expand Down

0 comments on commit 31f8c9a

Please sign in to comment.