From eade6c35658b5726c1b7fca46a84d4969782c8d5 Mon Sep 17 00:00:00 2001 From: Dave Kennedy Date: Mon, 2 Dec 2013 10:17:09 -0700 Subject: [PATCH] Simplified example --- pagination/ellipses.js | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/pagination/ellipses.js b/pagination/ellipses.js index d7324ed..1a3d225 100644 --- a/pagination/ellipses.js +++ b/pagination/ellipses.js @@ -11,17 +11,10 @@ * @anchor ellipses * @author Dave Kennedy * @example - * $('#my-table').dataTable({ - * // Optional usage of extended oSettings object - * 'fnInfoCallback': function(oSettings) { - * // Update stateful properties - * $.fn.dataTableExt.oPagination.ellipses.fnUpdateState(oSettings); - * return 'Viewing page ' + oSettings._iCurrentPage + ' of ' + oSettings._iTotalPages; - * }, - * // Optional usage of iShowPages option - * 'iShowPages': 15, - * // This is the only required option - * 'sPaginationType': 'ellipses' + * $(document).ready(function() { + * $('#example').dataTable({ + * 'sPaginationType': 'ellipses' + * }); * }); */