diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index dd2d0052d2..99beffe476 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -2,7 +2,7 @@ function fadeInRight(elem) { - var pct = browserInfo.mobile ? '3%' : '0.5%'; + var pct = browserInfo.mobile ? '3.5%' : '0.5%'; var keyframes = [ { opacity: '0', transform: 'translate3d(' + pct + ', 0, 0)', offset: 0 }, diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js index 8ec7979f93..e60e745d9d 100644 --- a/dashboard-ui/scripts/site.js +++ b/dashboard-ui/scripts/site.js @@ -1860,6 +1860,14 @@ var AppInfo = {}; Dashboard.navigate('livetv.html?tab=1'); }; + embyRouter.goHome = function () { + Dashboard.navigate('home.html'); + }; + + embyRouter.showSearch = function () { + Dashboard.navigate('search.html'); + }; + embyRouter.showLiveTV = function () { Dashboard.navigate('livetv.html'); };