fix:Replace jquery.truncate.js with text-overflow: ellipses.
This commit is contained in:
parent
f75842488d
commit
54e835b623
@ -58,6 +58,11 @@ Project resources
|
|||||||
Changelog
|
Changelog
|
||||||
=========
|
=========
|
||||||
|
|
||||||
|
v2.1.1 (2016-02-04)
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
- Replace Javascript for truncating text with CSS equivalent for better reliability.
|
||||||
|
|
||||||
v2.1.0 (2016-02-04)
|
v2.1.0 (2016-02-04)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
@ -110,7 +115,6 @@ v2.1.0 (2016-02-04)
|
|||||||
- Remove support for defunct Grooveshark service.
|
- Remove support for defunct Grooveshark service.
|
||||||
(Fixes: `#120 <https://github.com/pimusicbox/mopidy-musicbox-webclient/issues/120>`_).
|
(Fixes: `#120 <https://github.com/pimusicbox/mopidy-musicbox-webclient/issues/120>`_).
|
||||||
|
|
||||||
|
|
||||||
v2.0.0 (2015-03-26)
|
v2.0.0 (2015-03-26)
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
|
|||||||
@ -470,6 +470,7 @@ a {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
|
text-overflow: ellipses;
|
||||||
}
|
}
|
||||||
|
|
||||||
#infoartist {
|
#infoartist {
|
||||||
|
|||||||
@ -475,7 +475,6 @@
|
|||||||
<script type="text/javascript" src="../mopidy/mopidy.min.js"></script>
|
<script type="text/javascript" src="../mopidy/mopidy.min.js"></script>
|
||||||
<script type="text/javascript" src="js/iscroll-lite.js"></script>
|
<script type="text/javascript" src="js/iscroll-lite.js"></script>
|
||||||
<script src="js/jquery.cookie.js"></script>
|
<script src="js/jquery.cookie.js"></script>
|
||||||
<script src="js/jquery.truncate.min.js"></script>
|
|
||||||
<script src="js/controls.js"></script>
|
<script src="js/controls.js"></script>
|
||||||
<script src="js/library.js"></script>
|
<script src="js/library.js"></script>
|
||||||
<script src="js/functionsvars.js"></script>
|
<script src="js/functionsvars.js"></script>
|
||||||
|
|||||||
@ -24,9 +24,7 @@ function resetSong() {
|
|||||||
|
|
||||||
function resizeMb() {
|
function resizeMb() {
|
||||||
$("#infoname").html(songdata.track.name);
|
$("#infoname").html(songdata.track.name);
|
||||||
$("#infoname").truncate();
|
|
||||||
$("#infoartist").html(artiststext);
|
$("#infoartist").html(artiststext);
|
||||||
$("#infoartist").truncate();
|
|
||||||
|
|
||||||
if ($(window).width() <= 960) {
|
if ($(window).width() <= 960) {
|
||||||
// $('#playlisttracksdiv').hide();
|
// $('#playlisttracksdiv').hide();
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
CACHE MANIFEST
|
CACHE MANIFEST
|
||||||
|
|
||||||
# 2016-02-4:v2
|
# 2016-02-4:v4
|
||||||
|
|
||||||
NETWORK:
|
NETWORK:
|
||||||
*
|
*
|
||||||
@ -67,7 +67,6 @@ js/jquery.mobile.iscrollview-closure-min.js
|
|||||||
js/jquery.mobile.iscrollview-yui-min.js
|
js/jquery.mobile.iscrollview-yui-min.js
|
||||||
js/jquery.mobile.iscrollview.js
|
js/jquery.mobile.iscrollview.js
|
||||||
js/jquery.touchwipe.min.js
|
js/jquery.touchwipe.min.js
|
||||||
js/jquery.truncate.min.js
|
|
||||||
js/lastfm.api.cache.js
|
js/lastfm.api.cache.js
|
||||||
js/lastfm.api.js
|
js/lastfm.api.js
|
||||||
js/lastfm.api.md5.js
|
js/lastfm.api.md5.js
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user