mirror of
https://github.com/DataTables/DataTables.git
synced 2025-03-01 02:54:15 +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:
parent
2b126277fc
commit
92ce6487f2
6
media/js/jquery.dataTables.js
vendored
6
media/js/jquery.dataTables.js
vendored
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* @summary DataTables
|
* @summary DataTables
|
||||||
* @description Paginate, search and sort HTML tables
|
* @description Paginate, search and sort HTML tables
|
||||||
* @version 1.9.0
|
* @version 1.9.1.dev
|
||||||
* @file jquery.dataTables.js
|
* @file jquery.dataTables.js
|
||||||
* @author Allan Jardine (www.sprymedia.co.uk)
|
* @author Allan Jardine (www.sprymedia.co.uk)
|
||||||
* @contact www.sprymedia.co.uk/contact
|
* @contact www.sprymedia.co.uk/contact
|
||||||
@ -4609,8 +4609,8 @@
|
|||||||
{
|
{
|
||||||
$(n)
|
$(n)
|
||||||
.bind( 'click.DT', oData, function (e) {
|
.bind( 'click.DT', oData, function (e) {
|
||||||
fn(e);
|
|
||||||
n.blur(); // Remove focus outline for mouse users
|
n.blur(); // Remove focus outline for mouse users
|
||||||
|
fn(e);
|
||||||
} )
|
} )
|
||||||
.bind( 'keypress.DT', oData, function (e){
|
.bind( 'keypress.DT', oData, function (e){
|
||||||
if ( e.which === 13 ) {
|
if ( e.which === 13 ) {
|
||||||
@ -6542,7 +6542,7 @@
|
|||||||
* @type string
|
* @type string
|
||||||
* @default Version number
|
* @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
|
* Private data store, containing all of the settings objects that are created for the
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* @summary DataTables
|
* @summary DataTables
|
||||||
* @description Paginate, search and sort HTML tables
|
* @description Paginate, search and sort HTML tables
|
||||||
* @version 1.9.0
|
* @version 1.9.1.dev
|
||||||
* @file jquery.dataTables.js
|
* @file jquery.dataTables.js
|
||||||
* @author Allan Jardine (www.sprymedia.co.uk)
|
* @author Allan Jardine (www.sprymedia.co.uk)
|
||||||
* @contact www.sprymedia.co.uk/contact
|
* @contact www.sprymedia.co.uk/contact
|
||||||
@ -91,7 +91,7 @@
|
|||||||
* @type string
|
* @type string
|
||||||
* @default Version number
|
* @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
|
* Private data store, containing all of the settings objects that are created for the
|
||||||
|
@ -198,8 +198,8 @@ function _fnBindAction( n, oData, fn )
|
|||||||
{
|
{
|
||||||
$(n)
|
$(n)
|
||||||
.bind( 'click.DT', oData, function (e) {
|
.bind( 'click.DT', oData, function (e) {
|
||||||
fn(e);
|
|
||||||
n.blur(); // Remove focus outline for mouse users
|
n.blur(); // Remove focus outline for mouse users
|
||||||
|
fn(e);
|
||||||
} )
|
} )
|
||||||
.bind( 'keypress.DT', oData, function (e){
|
.bind( 'keypress.DT', oData, function (e){
|
||||||
if ( e.which === 13 ) {
|
if ( e.which === 13 ) {
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "DataTables",
|
"name": "DataTables",
|
||||||
"version": "1.9.0",
|
"version": "1.9.1.dev",
|
||||||
"title": "DataTables",
|
"title": "DataTables",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Allan Jardine",
|
"name": "Allan Jardine",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user