Skip to content

Commit

Permalink
fix: comment console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmnouira committed Aug 21, 2021
1 parent a1409e3 commit 84d93a2
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,23 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [v0.1.0](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.1.0...v0.1.0)
#### [v0.1.2](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.1.2...v0.1.2)

#### [v0.1.2](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.1.1...v0.1.2)

> 20 August 2021
- fix: remove unused variables [`9eb88ee`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/9eb88ee6f2344efffdd5813cc855131b93623fb9)
- docs: fix readme [`783300f`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/783300f3ac9b28c5dc1f7b942db0fdbe4cd3c96f)
- docs: fix description [`c7f3ca6`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/c7f3ca66d4cbfb4ecd0a6a74375f0eb88f92807c)

#### [v0.1.1](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.1.0...v0.1.1)

> 20 August 2021
- fix: fixes [`6c85bf5`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/6c85bf57847aced910d4ca08e8392234f6e57cc0)
- update changelog [`ec758a9`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/ec758a9537171a10eb751569d05c2743f16a3f0e)
- style: format code [`95419a2`](https://github.com/ahmnouira/ionic-react-header-parallax/commit/95419a2db5ce5f342c8b44a83f1d7c345f432652)

#### [v0.1.0](https://github.com/ahmnouira/ionic-react-header-parallax/compare/v0.0.8...v0.1.0)

Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"@types/react-router": "5.1.16",
"@types/react-router-dom": "5.1.8",
"babel-jest": "^26.6.0",
"ionic-react-header-parallax": "^0.1.1",
"ionic-react-header-parallax": "^0.1.2",
"ionicons": "5.5.3",
"react": "17.0.2",
"react-dom": "17.0.2",
Expand Down
8 changes: 4 additions & 4 deletions example/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5934,10 +5934,10 @@ internal-slot@^1.0.3:
has "^1.0.3"
side-channel "^1.0.4"

ionic-react-header-parallax@^0.1.1:
version "0.1.1"
resolved "https://registry.yarnpkg.com/ionic-react-header-parallax/-/ionic-react-header-parallax-0.1.1.tgz#13b0c3579ecc2aa84746345f05c686644edb3d11"
integrity sha512-pDUvPObUmFaGamFrFK3Vnz6eJ8PIFjaZwe3744rvxWNj5bdsSQXO8lwaJGdH4jKK5UCNd3dA+3OkSgUwXQVGyw==
ionic-react-header-parallax@^0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/ionic-react-header-parallax/-/ionic-react-header-parallax-0.1.2.tgz#c3bc18851a44f9e6ab9a4b7491c9fb73e14e09ea"
integrity sha512-H8eUoyr2q58s5AGhU/VDwLRNt8IAfgBVg/V7fdqFp8R/hBsLg/bI6gOr8gM/JuncLzjrKm2D4xOeUrQyZetR0g==

ionicons@5.5.3, ionicons@^5.1.2, ionicons@^5.5.3:
version "5.5.3"
Expand Down
2 changes: 1 addition & 1 deletion src/useIonicHeaderParallax.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export function useIonHeaderParallax({
barButtons.style.pointerEvents = 'all'

Array.from(barButtons.children).forEach((btn) => {
console.log(btn, btn as HTMLElement)
// console.log(btn, btn as HTMLElement)
const htmlBtn = btn as HTMLElement
htmlBtn.style.color = titleColor
})
Expand Down

0 comments on commit 84d93a2

Please sign in to comment.