bug fix
This commit is contained in:
parent
56dadce7e5
commit
7632cd2a02
3 changed files with 6 additions and 6 deletions
|
|
@ -485,7 +485,7 @@ export default Em.Component.extend(helperMixin, visualizerMixin, {
|
||||||
|
|
||||||
loadSongBeatPreferences() {
|
loadSongBeatPreferences() {
|
||||||
var song = this.get('playQueue')[this.get('playQueuePointer')],
|
var song = this.get('playQueue')[this.get('playQueuePointer')],
|
||||||
title = Em.isEmpty(song.artist) ? song.filename : song.artist + '-' + song.title,
|
title = Em.isEmpty(song.artist) ? song.fileName : song.artist + '-' + song.title,
|
||||||
songBeatPreferences = this.get('songBeatPreferences'),
|
songBeatPreferences = this.get('songBeatPreferences'),
|
||||||
preference = songBeatPreferences[title],
|
preference = songBeatPreferences[title],
|
||||||
oldBeatPrefCache = this.get('oldBeatPrefCache'),
|
oldBeatPrefCache = this.get('oldBeatPrefCache'),
|
||||||
|
|
|
||||||
|
|
@ -146,9 +146,9 @@
|
||||||
<div id="playerBottom" class="row {{if dimmerOn "dimmerOn"}}">
|
<div id="playerBottom" class="row {{if dimmerOn "dimmerOn"}}">
|
||||||
<div id="beatArea" class="col-sm-7 col-xs-12">
|
<div id="beatArea" class="col-sm-7 col-xs-12">
|
||||||
{{#if usingBeatPreferences}}
|
{{#if usingBeatPreferences}}
|
||||||
<span data-toggle="tooltip" data-placement="bottom auto" data-title="Using your saved beat preferences from the last time you listened to this song" class="bootstrapTooltip savedStarTooltip">
|
<span data-toggle="tooltip" data-placement="bottom auto" data-title="Using your saved beat preferences from the last time you listened to this song" class="bootstrapTooltip savedStarTooltip">
|
||||||
{{paper-icon id="saveBeatPreferencesStar" icon="star"}}
|
{{paper-icon id="saveBeatPreferencesStar" icon="star"}}
|
||||||
</span>
|
</span>
|
||||||
{{/if}}
|
{{/if}}
|
||||||
|
|
||||||
<div class="row" id="beatOptionRow">
|
<div class="row" id="beatOptionRow">
|
||||||
|
|
|
||||||
|
|
@ -1006,8 +1006,8 @@ body.dimmerOn {
|
||||||
|
|
||||||
#saveBeatPreferencesStar {
|
#saveBeatPreferencesStar {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 5px;
|
top: 3px;
|
||||||
left: 5px;
|
left: 3px;
|
||||||
color: $secondaryThemeColor !important;
|
color: $secondaryThemeColor !important;
|
||||||
font-size: 25px;
|
font-size: 25px;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Reference in a new issue