Fluorine icon indicating copy to clipboard operation
Fluorine copied to clipboard

Context-based Javascript eDSL and library; provides a way to isolate impure computations.

Results 8 Fluorine issues
Sort by recently updated
recently updated
newest added

Because WebRTC concerns too much asynchronous but related steps.

enhancement

For those polling required method, we should add a polling method like this: ``` IO().polling('/wait_something', 400, 3, check).done() ``` It means polling the server with endpoint '/wait_something' every 400ms, and...

enhancement

From this: var foo = function() {/_..._/} to this: var foo = function foo() {/_..._/}

enhancement

At this moment introducing complete but complex type checking rules isn't proper. We should implement a simple enough but useful type checking mechanism to prevent some obvious but hardly to...

enhancement

Even after a context function had been defined, we're still able to wrap it in some other scripts like this: ``` // ... some other necessary code ... var existing...

enhancement

Every function in contexts optionally has its own name, and it will be printed in debug mode. But if we extend a new context from the existing one, those functions...

enhancement

A growing up list... - removeAttr - slideDown - slideUp

enhancement

This related to those jQuery context functions. To fix this: 1. 'find' must record the previous DOM 2. 'end' will pass the DOM as result. But this will introduce special...

bug