mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/12613] Fixes from comments (single quotes and typos)
PHPBB3-12613
This commit is contained in:
parent
ef435cb89d
commit
d218f707b1
2 changed files with 4 additions and 4 deletions
|
@ -356,11 +356,11 @@ function parse_document(container)
|
||||||
* Pagination
|
* Pagination
|
||||||
*/
|
*/
|
||||||
container.find('.pagination .page-jump-form :button').click(function() {
|
container.find('.pagination .page-jump-form :button').click(function() {
|
||||||
$input = $(this).siblings("input.inputbox");
|
$input = $(this).siblings('input.inputbox');
|
||||||
pageJump($input);
|
pageJump($input);
|
||||||
});
|
});
|
||||||
|
|
||||||
container.find(".pagination .page-jump-form input.inputbox").on("keypress", function(event) {
|
container.find('.pagination .page-jump-form input.inputbox').on('keypress', function(event) {
|
||||||
if (event.which == 13 || event.keyCode == 13) {
|
if (event.which == 13 || event.keyCode == 13) {
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
pageJump($(this));
|
pageJump($(this));
|
||||||
|
@ -372,7 +372,7 @@ function parse_document(container)
|
||||||
// Wait a little bit to make sure the dropdown has activated
|
// Wait a little bit to make sure the dropdown has activated
|
||||||
setTimeout(function() {
|
setTimeout(function() {
|
||||||
if ($dropdown_container.hasClass('dropdown-visible')) {
|
if ($dropdown_container.hasClass('dropdown-visible')) {
|
||||||
$dropdown_container.find("input.inputbox").focus();
|
$dropdown_container.find('input.inputbox').focus();
|
||||||
}
|
}
|
||||||
},100);
|
},100);
|
||||||
});
|
});
|
||||||
|
|
|
@ -899,7 +899,7 @@ li.pagination ul {
|
||||||
background: none 0 50% no-repeat;
|
background: none 0 50% no-repeat;
|
||||||
}
|
}
|
||||||
|
|
||||||
li .pagination li a, li .pagnation li span {
|
li .pagination li a, li .pagination li span {
|
||||||
border-radius: 1px;
|
border-radius: 1px;
|
||||||
padding: 1px;
|
padding: 1px;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue