Skip to content

Commit

Permalink
fix(layout): Tslint error
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofsaja committed Jul 24, 2017
1 parent 6abc9ae commit 7201cc1
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

<a name="1.1.0"></a>
# [1.1.0](https://github.com/krzysztofsaja/angular-weather-widget/compare/v1.0.5...v1.1.0) (2017-07-24)


### Bug Fixes

* **readme:** Changed demo page ([5db7439](https://github.com/krzysztofsaja/angular-weather-widget/commit/5db7439))


### Features

* **layout:** Added wide/narrow layout mode ([6abc9ae](https://github.com/krzysztofsaja/angular-weather-widget/commit/6abc9ae))



<a name="1.0.5"></a>
## [1.0.5](https://github.com/krzysztofsaja/angular-weather-widget/compare/v1.0.4...v1.0.5) (2017-07-24)

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-weather-widget",
"version": "1.0.5",
"version": "1.1.0",
"description": "Weather Widget based on Open Weather Map Api",
"main": "./bundles/angular-weather-widget.umd.js",
"module": "./index.js",
Expand All @@ -20,7 +20,7 @@
"copyfiles": "copyfiles package.json LICENSE README.md CHANGELOG.md dist && node tools/package-json-cleanup.js",
"link": "npm run build:dist && npm run copyfiles && cd dist && npm link && cd ..",
"prerelease": "npm test",
"release:git": "git add package.json && git commit -m \"chore: bump version number\" && standard-version && git push --follow-tags origin master",
"release:git": "standard-version && git add package.json && git commit -m \"chore: bump version number\" && git push --follow-tags origin master",
"release:npm": "npm run build:dist && npm run copyfiles && npm publish dist",
"release": "npm run release:git && npm run release:npm",
"postrelease": "npm run build:clean && npm run gh-pages",
Expand Down
2 changes: 1 addition & 1 deletion src/weather.container.ts
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ class WeatherContainer implements OnDestroy {
return this._settings;
}

isWideLayout: boolean = false;
isWideLayout = false;
subscriptionCurrentWeather: Subscription;
subscriptionForecast: Subscription;
currentWeather$: Observable<CurrentWeather>;
Expand Down

0 comments on commit 7201cc1

Please sign in to comment.