From 81afb3321be6c81402c0f792eabcf0a2b0b811be Mon Sep 17 00:00:00 2001 From: Tim Hobbs Date: Fri, 21 Mar 2014 16:17:02 -0700 Subject: [PATCH 1/5] Added focus to popup When collection add popup is shown, the textbox gets focus --- dashboard-ui/editcollectionitems.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dashboard-ui/editcollectionitems.html b/dashboard-ui/editcollectionitems.html index a1989d4f48..23178307c9 100644 --- a/dashboard-ui/editcollectionitems.html +++ b/dashboard-ui/editcollectionitems.html @@ -72,6 +72,11 @@ From bfb9ba1b7004efa695b5681594140b781e57feb3 Mon Sep 17 00:00:00 2001 From: Tim Hobbs Date: Fri, 21 Mar 2014 16:17:39 -0700 Subject: [PATCH 2/5] Fixed typo --- dashboard-ui/editcollectionitems.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/editcollectionitems.html b/dashboard-ui/editcollectionitems.html index 23178307c9..4bce278254 100644 --- a/dashboard-ui/editcollectionitems.html +++ b/dashboard-ui/editcollectionitems.html @@ -74,7 +74,7 @@ $('.collectionItemSearchForm').off('submit', EditCollectionItemsPage.onSearchFormSubmit).on('submit', EditCollectionItemsPage.onSearchFormSubmit); $(document).on("pageinit", function () { $(".popupIdentify").on("popupafteropen", function (e) { - $("#txtLookupName").focus().selct(); + $("#txtLookupName").focus().select(); }); }); From 27e01e2f85f15431f29c985b47cd671dfa262acd Mon Sep 17 00:00:00 2001 From: Tim Hobbs Date: Fri, 21 Mar 2014 17:21:01 -0700 Subject: [PATCH 3/5] Removed init wrapper --- dashboard-ui/editcollectionitems.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dashboard-ui/editcollectionitems.html b/dashboard-ui/editcollectionitems.html index 4bce278254..4ef4a8e41f 100644 --- a/dashboard-ui/editcollectionitems.html +++ b/dashboard-ui/editcollectionitems.html @@ -72,10 +72,8 @@ From d1c477a76f57e69f141c6c1124d01e281d490b36 Mon Sep 17 00:00:00 2001 From: Tim Hobbs Date: Mon, 24 Mar 2014 20:26:54 -0700 Subject: [PATCH 4/5] Fullscreen fix So weird, because I was changing this to try and get rid of the vertical scrollbar, but... Whatever. --- dashboard-ui/scripts/mediaplayer-video.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/mediaplayer-video.js b/dashboard-ui/scripts/mediaplayer-video.js index c9a36eb536..04b91dc857 100644 --- a/dashboard-ui/scripts/mediaplayer-video.js +++ b/dashboard-ui/scripts/mediaplayer-video.js @@ -59,7 +59,7 @@ } $('#videoPlayer').removeClass('fullscreenVideo'); } else { - requestFullScreen(document.documentElement); + requestFullScreen(document.body); } }; From a61b36b74c03e2e7402ea81e0291eaac5aa0dbbb Mon Sep 17 00:00:00 2001 From: Tim Hobbs Date: Tue, 25 Mar 2014 00:52:23 -0700 Subject: [PATCH 5/5] Fixed pagesize Var name was changed in save but not load --- dashboard-ui/scripts/librarybrowser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dashboard-ui/scripts/librarybrowser.js b/dashboard-ui/scripts/librarybrowser.js index 407fbc525e..91b3369f87 100644 --- a/dashboard-ui/scripts/librarybrowser.js +++ b/dashboard-ui/scripts/librarybrowser.js @@ -1141,7 +1141,7 @@ getPagingHtml: function (query, totalRecordCount, updatePageSizeSetting, pageSizes, showLimit) { if (query.Limit && updatePageSizeSetting !== false) { - localStorage.setItem('pagesize', query.Limit); + localStorage.setItem('pagesize_', query.Limit); } var html = '';