add new slider
This commit is contained in:
parent
e33e5875cf
commit
09d4af3357
133 changed files with 9418 additions and 256 deletions
|
@ -2,7 +2,7 @@
|
|||
|
||||
function updateCredentials() {
|
||||
|
||||
console.log('sending updated credentials to ApiClientBridge');
|
||||
Logger.log('sending updated credentials to ApiClientBridge');
|
||||
|
||||
var json = JSON.stringify(ConnectionManager.credentialProvider().credentials());
|
||||
var credentials = JSON.parse(json);
|
||||
|
@ -21,7 +21,7 @@
|
|||
|
||||
function initNativeConnectionManager() {
|
||||
|
||||
console.log('initNativeConnectionManager');
|
||||
Logger.log('initNativeConnectionManager');
|
||||
|
||||
var capabilities = ConnectionManager.capabilities();
|
||||
|
||||
|
|
6
dashboard-ui/cordova/android/immersive.js
vendored
6
dashboard-ui/cordova/android/immersive.js
vendored
|
@ -1,11 +1,11 @@
|
|||
(function () {
|
||||
|
||||
function onSuccess() {
|
||||
console.log('Immersive mode succeeded');
|
||||
Logger.log('Immersive mode succeeded');
|
||||
}
|
||||
|
||||
function onError() {
|
||||
console.log('Immersive mode failed');
|
||||
Logger.log('Immersive mode failed');
|
||||
}
|
||||
|
||||
//// Is this plugin supported?
|
||||
|
@ -89,7 +89,7 @@
|
|||
|
||||
Dashboard.ready(function () {
|
||||
|
||||
console.log('binding fullscreen to MediaController');
|
||||
Logger.log('binding fullscreen to MediaController');
|
||||
|
||||
$(MediaController).on('playerchange', function () {
|
||||
|
||||
|
|
8
dashboard-ui/cordova/android/mediasession.js
vendored
8
dashboard-ui/cordova/android/mediasession.js
vendored
|
@ -96,7 +96,7 @@
|
|||
|
||||
function onPlaybackStart(e, state) {
|
||||
|
||||
console.log('nowplaying event: ' + e.type);
|
||||
Logger.log('nowplaying event: ' + e.type);
|
||||
|
||||
var player = this;
|
||||
|
||||
|
@ -107,7 +107,7 @@
|
|||
|
||||
function onPlaybackStopped(e, state) {
|
||||
|
||||
console.log('nowplaying event: ' + e.type);
|
||||
Logger.log('nowplaying event: ' + e.type);
|
||||
var player = this;
|
||||
|
||||
player.endPlayerUpdates();
|
||||
|
@ -142,7 +142,7 @@
|
|||
|
||||
currentPlayer = player;
|
||||
|
||||
console.log('binding remotecontrols to MediaPlayer');
|
||||
Logger.log('binding remotecontrols to MediaPlayer');
|
||||
|
||||
player.getPlayerState().done(function (state) {
|
||||
|
||||
|
@ -161,7 +161,7 @@
|
|||
|
||||
Dashboard.ready(function () {
|
||||
|
||||
console.log('binding remotecontrols to MediaController');
|
||||
Logger.log('binding remotecontrols to MediaController');
|
||||
|
||||
$(MediaController).on('playerchange', function () {
|
||||
|
||||
|
|
2
dashboard-ui/cordova/android/vlcplayer.js
vendored
2
dashboard-ui/cordova/android/vlcplayer.js
vendored
|
@ -39,7 +39,7 @@
|
|||
function onError() {
|
||||
|
||||
var errorCode = this.error ? this.error.code : '';
|
||||
console.log('Media element error code: ' + errorCode);
|
||||
Logger.log('Media element error code: ' + errorCode);
|
||||
|
||||
$(self).trigger('error');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue