aexaey
aexaey
Regarding underscores - would this sort of syntax be more palatable? ```javascript .visible('#foo') .if(function() { ... ``` i.e. add new ```if``` action that does the same as ```then```, but conditionally.
Oh, I see. Cool. I've changed PR to use headlessCamelCase.
Thanks @johntitus , I've added tests and bare-bones descriptions to Readme.md. Let me know if you'd like this PR squashed into a single commit.
Or, same in javascript: ```javascript .visible('#foo') .then(function(a) { if (a) { ... ``` vs. ```javascript .if_visible('#foo', function() { ... ```