1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Minor cast refactor

This commit is contained in:
Tim Hobbs 2014-04-23 04:12:27 -07:00
parent 57eb18290f
commit 591484aec6

View file

@ -1296,7 +1296,11 @@
self.currentTimeElement.html(timeText); self.currentTimeElement.html(timeText);
}; };
self.changeStream = self.seek = function (position) { self.changeStream = function (position) {
castPlayer.seekMedia(position);
};
self.seek = function (position) {
castPlayer.seekMedia(position); castPlayer.seekMedia(position);
}; };