From 4a30c833be826d1aee91e551a0e8b1a084bf9402 Mon Sep 17 00:00:00 2001 From: RA Date: Wed, 4 Mar 2015 18:36:02 +0200 Subject: [PATCH 1/3] Update jquery.livequery.js fix add to registerPlugin function show --- src/jquery.livequery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.livequery.js b/src/jquery.livequery.js index fcea4b8..99c25fe 100644 --- a/src/jquery.livequery.js +++ b/src/jquery.livequery.js @@ -196,7 +196,7 @@ $.extend($jQlq, { }); // Register core DOM manipulation methods -$jQlq.registerPlugin('append', 'prepend', 'after', 'before', 'wrap', 'attr', 'removeAttr', 'addClass', 'removeClass', 'toggleClass', 'empty', 'remove', 'html', 'prop', 'removeProp'); +$jQlq.registerPlugin('show', 'append', 'prepend', 'after', 'before', 'wrap', 'attr', 'removeAttr', 'addClass', 'removeClass', 'toggleClass', 'empty', 'remove', 'html', 'prop', 'removeProp'); // Run Live Queries when the Document is ready $(function() { $jQlq.play(); }); From f3652df797f261414f26c8d5bfc3fea65049cd42 Mon Sep 17 00:00:00 2001 From: RA Date: Wed, 4 Mar 2015 18:36:46 +0200 Subject: [PATCH 2/3] Update jquery.livequery.js fix setTimeout to 200 --- src/jquery.livequery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.livequery.js b/src/jquery.livequery.js index 99c25fe..0642f38 100644 --- a/src/jquery.livequery.js +++ b/src/jquery.livequery.js @@ -182,7 +182,7 @@ $.extend($jQlq, { // Clear timeout if it already exists if ($jQlq.timeout) clearTimeout($jQlq.timeout); // Create a timeout to check the queue and actually run the Live Queries - $jQlq.timeout = setTimeout($jQlq.checkQueue, 20); + $jQlq.timeout = setTimeout($jQlq.checkQueue, 200); }, stop: function(id) { From a77ed748ee5ad04daa701a8323c4b0eba63da016 Mon Sep 17 00:00:00 2001 From: RA Date: Thu, 5 Mar 2015 10:44:43 +0200 Subject: [PATCH 3/3] Update jquery.livequery.js fix livequery timeout=50 --- src/jquery.livequery.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jquery.livequery.js b/src/jquery.livequery.js index 0642f38..9c659c5 100644 --- a/src/jquery.livequery.js +++ b/src/jquery.livequery.js @@ -182,7 +182,7 @@ $.extend($jQlq, { // Clear timeout if it already exists if ($jQlq.timeout) clearTimeout($jQlq.timeout); // Create a timeout to check the queue and actually run the Live Queries - $jQlq.timeout = setTimeout($jQlq.checkQueue, 200); + $jQlq.timeout = setTimeout($jQlq.checkQueue, 50); }, stop: function(id) {