Made most things reachable with just a keyboard

This commit is contained in:
Marcin Kurczewski
2014-10-11 23:24:03 +02:00
parent 33b205b574
commit 765d553a84
10 changed files with 38 additions and 34 deletions

View File

@ -180,8 +180,9 @@ App.Presenters.PagerPresenter = function(
}
lastPage = page;
var $a = jQuery('<a/>');
$a.click(function() {
var $a = jQuery('<a href="#"/>');
$a.click(function(e) {
e.preventDefault();
pager.setPage(page);
syncUrl();
});