From 9ecfdc4e7cab8fc52f3c7d55f761d9a464c43e5c Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 24 Jul 2016 14:58:21 -0400 Subject: [PATCH] updated nuget --- dashboard-ui/scripts/librarybrowser.js | 2 +- dashboard-ui/scripts/site.js | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) 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'); };