mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
462bbad010
commit
dfdd80f607
6 changed files with 19 additions and 12 deletions
|
@ -45,7 +45,7 @@
|
|||
"tag": "v1.0.11",
|
||||
"commit": "e3c1ab0c72905b58fb4d9adc2921ea73b5c085a5"
|
||||
},
|
||||
"_source": "git://github.com/PolymerElements/paper-behaviors.git",
|
||||
"_source": "git://github.com/polymerelements/paper-behaviors.git",
|
||||
"_target": "^1.0.0",
|
||||
"_originalSource": "PolymerElements/paper-behaviors"
|
||||
"_originalSource": "polymerelements/paper-behaviors"
|
||||
}
|
|
@ -32,14 +32,14 @@
|
|||
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0"
|
||||
},
|
||||
"ignore": [],
|
||||
"homepage": "https://github.com/PolymerElements/paper-ripple",
|
||||
"homepage": "https://github.com/polymerelements/paper-ripple",
|
||||
"_release": "1.0.5",
|
||||
"_resolution": {
|
||||
"type": "version",
|
||||
"tag": "v1.0.5",
|
||||
"commit": "d72e7a9a8ab518b901ed18dde492df3b87a93be5"
|
||||
},
|
||||
"_source": "git://github.com/PolymerElements/paper-ripple.git",
|
||||
"_source": "git://github.com/polymerelements/paper-ripple.git",
|
||||
"_target": "^1.0.0",
|
||||
"_originalSource": "PolymerElements/paper-ripple"
|
||||
"_originalSource": "polymerelements/paper-ripple"
|
||||
}
|
|
@ -34,6 +34,6 @@
|
|||
"commit": "77504bc2092eed3ad631eff04b186b22e3affb6e"
|
||||
},
|
||||
"_source": "git://github.com/Polymer/polymer.git",
|
||||
"_target": "^1.0.0",
|
||||
"_target": "^1.2.0",
|
||||
"_originalSource": "Polymer/polymer"
|
||||
}
|
|
@ -27,7 +27,7 @@
|
|||
<paper-button raised class="accent block"><iron-icon icon="check"></iron-icon><span>${ButtonSignIn}</span></paper-button>
|
||||
</button>
|
||||
<div class="forgotPassword">
|
||||
<a href="http://emby.media/community/index.php?app=core&module=global§ion=lostpass" target="_blank" class="clearLink">
|
||||
<a href="https://emby.media/community/index.php?app=core&module=global§ion=lostpass" target="_blank" class="clearLink">
|
||||
<paper-button raised class="cancel block"><iron-icon icon="close"></iron-icon><span>${ButtonForgotPassword}</span></paper-button>
|
||||
</a>
|
||||
</div>
|
||||
|
@ -38,11 +38,12 @@
|
|||
|
||||
<div class="newUsers" style="margin-top: 2em;">
|
||||
<h2 style="text-align: left;">${HeaderNewUsers}</h2>
|
||||
<a href="http://emby.media/community/index.php?app=core&module=global§ion=register" target="_blank" class="clearLink">
|
||||
<a href="https://emby.media/community/index.php?app=core&module=global§ion=register" target="_blank" class="clearLink">
|
||||
<paper-button raised class="submit block btnSignupForConnect"><iron-icon icon="add"></iron-icon><span>${ButtonSignUp}</span></paper-button>
|
||||
</a>
|
||||
</div>
|
||||
<div class="terms hide fieldDescription" style="margin-top: 2em; color: #ccc;"></div>
|
||||
<div><br/><br/><iron-icon icon="new-releases" style="color: #52B54B"></iron-icon> Try the new <a href="//tv.emby.media" target="_blank">Emby Theater at tv.emby.media</a>, a remote-friendly app designed for your TV or large screen monitor.</div>
|
||||
</form>
|
||||
|
||||
<form class="manualServerForm" style="margin: 0 auto;display:none;">
|
||||
|
@ -98,12 +99,12 @@
|
|||
<paper-button raised class="cancel block btnCancelSignup"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
|
||||
</form>
|
||||
|
||||
<div class="welcomeContainer readOnlyContent" style="text-align: center; margin: 0 auto;display:none;">
|
||||
<div class="welcomeContainer readOnlyContent" style="text-align: center; margin: 0 auto; display: none;">
|
||||
|
||||
<div style="text-align: left;">
|
||||
<h1>${HeaderWelcomeToEmby}</h1>
|
||||
<p style="margin:2em 0;">${EmbyIntroMessage}</p>
|
||||
<p style="margin:2em 0;" class="embyIntroDownloadMessage"></p>
|
||||
<p style="margin: 2em 0;">${EmbyIntroMessage}</p>
|
||||
<p style="margin: 2em 0;" class="embyIntroDownloadMessage"></p>
|
||||
|
||||
|
||||
<paper-button raised class="accent block btnWelcomeNext iconRight"><iron-icon icon="arrow-forward"></iron-icon><span>${ButtonNext}</span></paper-button>
|
||||
|
|
|
@ -1730,7 +1730,11 @@
|
|||
var result = {};
|
||||
result.screenWidth = screenWidth;
|
||||
|
||||
if (!AppInfo.hasLowImageBandwidth) {
|
||||
if (AppInfo.hasLowImageBandwidth) {
|
||||
if (!AppInfo.isNativeApp) {
|
||||
screenWidth *= .7;
|
||||
}
|
||||
} else {
|
||||
screenWidth *= 1.2;
|
||||
}
|
||||
|
||||
|
|
|
@ -1725,6 +1725,7 @@ var AppInfo = {};
|
|||
humanedate: 'components/humanedate',
|
||||
chromecasthelpers: 'components/chromecasthelpers',
|
||||
jQuery: bowerPath + '/jquery/dist/jquery.slim.min',
|
||||
jQueryFull: bowerPath + '/jquery/dist/jquery.min',
|
||||
fastclick: bowerPath + '/fastclick/lib/fastclick',
|
||||
events: apiClientBowerPath + '/events',
|
||||
credentialprovider: apiClientBowerPath + '/credentials',
|
||||
|
@ -2403,6 +2404,7 @@ function addLegacyDependencies(depends, url) {
|
|||
depends.push('jqmcollapsible');
|
||||
depends.push('jqmcheckbox');
|
||||
depends.push('legacy/dashboard');
|
||||
depends.push('jQueryFull');
|
||||
}
|
||||
|
||||
depends.push('jqmcontrolgroup');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue