Merge pull request #752 from timhobbs/master

Minor updates
This commit is contained in:
Luke 2014-03-25 07:47:17 -04:00
commit d1d1cd2618
3 changed files with 5 additions and 2 deletions

View File

@ -72,6 +72,9 @@
<script type="text/javascript">
$('.collectionItemSearchForm').off('submit', EditCollectionItemsPage.onSearchFormSubmit).on('submit', EditCollectionItemsPage.onSearchFormSubmit);
$("body").on("popupafteropen", ".popupIdentify", function (e) {
$("#txtLookupName").focus().select();
});
</script>
</div>
</body>

View File

@ -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 = '';

View File

@ -59,7 +59,7 @@
}
$('#videoPlayer').removeClass('fullscreenVideo');
} else {
requestFullScreen(document.documentElement);
requestFullScreen(document.body);
}
};