From de032f3420df9bac6c0dbd605692889e63a67994 Mon Sep 17 00:00:00 2001 From: Bruno Dias Date: Tue, 22 Mar 2016 20:52:50 -0300 Subject: [PATCH 01/11] update examples. --- index.html | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/index.html b/index.html index 6e0cd45..16b8f41 100644 --- a/index.html +++ b/index.html @@ -93,6 +93,13 @@ scope.bulkAction = bulkAction; scope.collection = collection; + var k = setInterval(function() { + if (bulkAction.all()) { + return; + } + bulkAction.mark(parseInt(Math.random() * 4) + 1); + }, 1000); + // default value. sl.html("none"); -- 2.6.4