Skip to content
This repository has been archived by the owner on Mar 30, 2021. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'radiant-player/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
BarakaAka1Only committed Sep 15, 2016
2 parents 0679a3e + a32e9f4 commit 5489519
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [unreleased]

## [1.10.3] - 2016-09-14
### Fixed
* Hotfixed navigation bar issue causing crashes ([#604](https://github.com/radiant-player/radiant-player-mac/pull/604))

## [1.10.2] - 2016-08-19
### Fixed
* Fixed visual issue with Google's recent UI update ([#590](https://github.com/radiant-player/radiant-player-mac/pull/590), [@BarakaAka1Only](https://github.com/BarakaAka1Only))
Expand Down
4 changes: 2 additions & 2 deletions radiant-player-mac/info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.10.2</string>
<string>1.10.3</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>1.10.2</string>
<string>1.10.3</string>
<key>LSApplicationCategoryType</key>
<string>public.app-category.music</string>
<key>LSMinimumSystemVersion</key>
Expand Down
9 changes: 7 additions & 2 deletions radiant-player-mac/js/navigation.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ if (typeof window.GMNavigation === 'undefined') {
buttonsContainer.parentNode.insertBefore(paddingElement, buttonsContainer);

// Adjust the drawer navigation scrolling mode to accomodate the traffic light buttons.
var el = document.querySelector('#drawer #nav-container');
if (el) el.setAttribute('mode', '');
var navContainer = document.querySelector('#drawer #nav-container');
if (navContainer) {
navContainer.removeAttribute('mode');
var mode = document.createAttribute('mode');
mode.value = '';
navContainer.setAttributeNode(mode);
}
}

0 comments on commit 5489519

Please sign in to comment.