This commit is contained in:
Egor 2015-11-01 14:11:54 -08:00
parent 028013f020
commit b6a36663b2
3 changed files with 6 additions and 6 deletions

View file

@ -485,7 +485,7 @@ export default Em.Component.extend(helperMixin, visualizerMixin, {
loadSongBeatPreferences() {
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'),
preference = songBeatPreferences[title],
oldBeatPrefCache = this.get('oldBeatPrefCache'),

View file

@ -146,9 +146,9 @@
<div id="playerBottom" class="row {{if dimmerOn "dimmerOn"}}">
<div id="beatArea" class="col-sm-7 col-xs-12">
{{#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">
{{paper-icon id="saveBeatPreferencesStar" icon="star"}}
</span>
<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"}}
</span>
{{/if}}
<div class="row" id="beatOptionRow">

View file

@ -1006,8 +1006,8 @@ body.dimmerOn {
#saveBeatPreferencesStar {
position: absolute;
top: 5px;
left: 5px;
top: 3px;
left: 3px;
color: $secondaryThemeColor !important;
font-size: 25px;
}