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
53371d27ab
commit
48d4b0c287
6 changed files with 18 additions and 11 deletions
|
@ -16,12 +16,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.1.58",
|
"version": "1.1.60",
|
||||||
"_release": "1.1.58",
|
"_release": "1.1.60",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.1.58",
|
"tag": "1.1.60",
|
||||||
"commit": "65c791671a6bc768533a150998a75565b8e17cff"
|
"commit": "6b1287b7db17651fab4570e9c7c6cb8e8cdead53"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
|
"_source": "git://github.com/MediaBrowser/emby-webcomponents.git",
|
||||||
"_target": "~1.1.5",
|
"_target": "~1.1.5",
|
||||||
|
|
|
@ -619,6 +619,10 @@ define([], function () {
|
||||||
|
|
||||||
// ensure non-hash for the same path
|
// ensure non-hash for the same path
|
||||||
var link = el.getAttribute('href');
|
var link = el.getAttribute('href');
|
||||||
|
if (link == '#') {
|
||||||
|
e.preventDefault();
|
||||||
|
return;
|
||||||
|
}
|
||||||
if (!hashbang && el.pathname === location.pathname && (el.hash || '#' === link)) return;
|
if (!hashbang && el.pathname === location.pathname && (el.hash || '#' === link)) return;
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -135,7 +135,8 @@ define(['loading', 'viewManager', 'skinManager', 'pluginManager', 'backdrop', 'b
|
||||||
controllerFactory: controllerFactory,
|
controllerFactory: controllerFactory,
|
||||||
options: {
|
options: {
|
||||||
supportsThemeMedia: route.supportsThemeMedia || false
|
supportsThemeMedia: route.supportsThemeMedia || false
|
||||||
}
|
},
|
||||||
|
autoFocus: route.autoFocus
|
||||||
};
|
};
|
||||||
currentViewLoadRequest = currentRequest;
|
currentViewLoadRequest = currentRequest;
|
||||||
|
|
||||||
|
|
|
@ -41,7 +41,9 @@ define(['viewcontainer', 'focusManager', 'queryString', 'connectionManager', 'ev
|
||||||
var eventDetail = getViewEventDetail(view, options, isRestore);
|
var eventDetail = getViewEventDetail(view, options, isRestore);
|
||||||
|
|
||||||
if (!isRestore) {
|
if (!isRestore) {
|
||||||
focusManager.autoFocus(view);
|
if (options.autoFocus !== false) {
|
||||||
|
focusManager.autoFocus(view);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if (view.activeElement) {
|
else if (view.activeElement) {
|
||||||
view.activeElement.focus();
|
view.activeElement.focus();
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
"tag": "v1.0.11",
|
"tag": "v1.0.11",
|
||||||
"commit": "e3c1ab0c72905b58fb4d9adc2921ea73b5c085a5"
|
"commit": "e3c1ab0c72905b58fb4d9adc2921ea73b5c085a5"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymerelements/paper-behaviors.git",
|
"_source": "git://github.com/PolymerElements/paper-behaviors.git",
|
||||||
"_target": "^1.0.0",
|
"_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"
|
"iron-test-helpers": "PolymerElements/iron-test-helpers#^1.0.0"
|
||||||
},
|
},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"homepage": "https://github.com/polymerelements/paper-ripple",
|
"homepage": "https://github.com/PolymerElements/paper-ripple",
|
||||||
"_release": "1.0.5",
|
"_release": "1.0.5",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "v1.0.5",
|
"tag": "v1.0.5",
|
||||||
"commit": "d72e7a9a8ab518b901ed18dde492df3b87a93be5"
|
"commit": "d72e7a9a8ab518b901ed18dde492df3b87a93be5"
|
||||||
},
|
},
|
||||||
"_source": "git://github.com/polymerelements/paper-ripple.git",
|
"_source": "git://github.com/PolymerElements/paper-ripple.git",
|
||||||
"_target": "^1.0.0",
|
"_target": "^1.0.0",
|
||||||
"_originalSource": "polymerelements/paper-ripple"
|
"_originalSource": "PolymerElements/paper-ripple"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue