diff --git a/README.rst b/README.rst index 9c2c186..d4b656b 100644 --- a/README.rst +++ b/README.rst @@ -108,8 +108,9 @@ v2.4.0 (UNRELEASED) - Now shows server name/IP address and port number at the bottom of the navigation pane. (Addresses: `#67 `_). - Add ability to insert a track anywhere in the current queue. (Addresses: `#75 `_). -- Add 'Show Track Info' popup which can be activated from any context menu or by clicking the 'info' icon next to the album cover on the - 'Now Playing' pane. The popup includes the URI of the track, which can be inserted into various lists elsewhere in the player. +- Add 'Show Track Info' popup which can be activated from any context menu or by clicking on either the 'info' icon next + to the album cover or the track's title text on the 'Now Playing' pane. The popup includes the URI of the track, which + can be inserted into various lists elsewhere in the player. - Updated icon set for font-awesome 4.7.0. - Added 'Refresh' button for refreshing libraries. (Addresses: `#75 `_). diff --git a/mopidy_musicbox_webclient/static/js/controls.js b/mopidy_musicbox_webclient/static/js/controls.js index 0a01472..46e2629 100644 --- a/mopidy_musicbox_webclient/static/js/controls.js +++ b/mopidy_musicbox_webclient/static/js/controls.js @@ -420,7 +420,7 @@ } if (track.date) { - row = {'label': 'Date', 'text': new Date(track.date)} + row = {'label': 'Date', 'text': new Date(track.date).toLocaleString()} html += stringFromTemplate(rowTemplate, row) }