This commit is contained in:
Cameron 2020-07-28 13:09:05 +01:00
parent 4c28399c6b
commit 8691da18ad

View file

@ -77,6 +77,7 @@ export function showLayoutMenu (button, currentLayout, views) {
}); });
}); });
} }
export function getQueryPagingHtml (options) { export function getQueryPagingHtml (options) {
var startIndex = options.startIndex; var startIndex = options.startIndex;
var limit = options.limit; var limit = options.limit;
@ -116,6 +117,7 @@ export function getQueryPagingHtml (options) {
return html += '</div>'; return html += '</div>';
} }
export function showSortMenu (options) { export function showSortMenu (options) {
require(['dialogHelper', 'emby-radio'], function (dialogHelper) { require(['dialogHelper', 'emby-radio'], function (dialogHelper) {
function onSortByChange() { function onSortByChange() {
@ -207,4 +209,4 @@ export default {
showLayoutMenu, showLayoutMenu,
getQueryPagingHtml, getQueryPagingHtml,
showSortMenu showSortMenu
} };