prettier
svn path=/trunk/KDE/kdebase/workspace/plasma/scriptengines/javascript/; revision=906321
This commit is contained in:
parent
8ddb49f755
commit
a794f4b1ff
@ -6,8 +6,8 @@ controller = service("nowplaying", watchingPlayer);
|
||||
plasmoid.dataUpdate = function(a, b)
|
||||
{
|
||||
label.text = "Playing " + b.Title + " by " + b.Artist + ". time: " +
|
||||
parseInt(parseInt(b.Position)/60) + ":" + (parseInt(b.Position)%60);
|
||||
progress.value = b.Position;
|
||||
Math.floor(b.Position/60) + ":" + (parseInt(b.Position)%60);
|
||||
progress.value = 100*b.Position/b.Length;
|
||||
}
|
||||
|
||||
plasmoid.stop = function()
|
||||
@ -52,6 +52,6 @@ progress.orientation = QtHorizontal;
|
||||
layout.addItem(progress);
|
||||
controller.associateWidget(progress, "progress");
|
||||
|
||||
progress["valueChanged(int)"].connect(plasmoid.setProgress);
|
||||
progress["sliderMoved(int)"].connect(plasmoid.setProgress);
|
||||
|
||||
engine.connectSource(watchingPlayer, plasmoid, 500);
|
||||
|
Loading…
Reference in New Issue
Block a user