Mike Coolin

Results 2 issues of Mike Coolin

Love this library its very handy. Thanks for creating it! One suggestion is a means to use all the values in an array, basically a foreach. It would be handy...

``` self.requireTemplate = function(name, callbackn){ _.series([ function(callback){ self.waiton(false); callback(); }, function (callback) { setTimeout(function () { $.get('templates/'+name+'.htm', function(data){ self.waitoff(); callback(null, data); }).error(function(e) { alert('Error: templates/'+name+'.htm not found'); }); }, 50);...