1
0
mirror of https://github.com/DataTables/DataTables.git synced 2025-01-30 23:52:11 +01:00

DataTables 1.9.1 development begins

Fix: When using full numbers pagination in IE and clicking upon one of the numbers in the paging control, a Javascript error would occur due to trying to blur an element that was no longer in the DOM
This commit is contained in:
Allan Jardine 2012-02-02 07:06:33 +00:00
parent 2b126277fc
commit 92ce6487f2
4 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
/**
* @summary DataTables
* @description Paginate, search and sort HTML tables
* @version 1.9.0
* @version 1.9.1.dev
* @file jquery.dataTables.js
* @author Allan Jardine (www.sprymedia.co.uk)
* @contact www.sprymedia.co.uk/contact
@ -4609,8 +4609,8 @@
{
$(n)
.bind( 'click.DT', oData, function (e) {
fn(e);
n.blur(); // Remove focus outline for mouse users
fn(e);
} )
.bind( 'keypress.DT', oData, function (e){
if ( e.which === 13 ) {
@ -6542,7 +6542,7 @@
* @type string
* @default Version number
*/
DataTable.version = "1.9.0";
DataTable.version = "1.9.1.dev";
/**
* Private data store, containing all of the settings objects that are created for the

View File

@ -1,7 +1,7 @@
/**
* @summary DataTables
* @description Paginate, search and sort HTML tables
* @version 1.9.0
* @version 1.9.1.dev
* @file jquery.dataTables.js
* @author Allan Jardine (www.sprymedia.co.uk)
* @contact www.sprymedia.co.uk/contact
@ -91,7 +91,7 @@
* @type string
* @default Version number
*/
DataTable.version = "1.9.0";
DataTable.version = "1.9.1.dev";
/**
* Private data store, containing all of the settings objects that are created for the

View File

@ -198,8 +198,8 @@ function _fnBindAction( n, oData, fn )
{
$(n)
.bind( 'click.DT', oData, function (e) {
fn(e);
n.blur(); // Remove focus outline for mouse users
fn(e);
} )
.bind( 'keypress.DT', oData, function (e){
if ( e.which === 13 ) {

View File

@ -1,6 +1,6 @@
{
"name": "DataTables",
"version": "1.9.0",
"version": "1.9.1.dev",
"title": "DataTables",
"author": {
"name": "Allan Jardine",