- Switched tests to use Karma and Jasmine instead of QUnit.
- The
NodeList
conversion functionality now accepts and combines multipleElement
andNodeList
parameters into one singleNodeList
. Previously only one parameter was accepted even though the underlying code could handle multiple.
- A different way of parsing the different
Thin
function signatures was implemented which pushes the minimum supported version of Opera up to 12.10. All other browsers remain the same. - An instance of
NodeList
orElement
can be passed to theThin
function and an instance ofNodeList
will be returned representing the same elements. - The
querySelector
andquerySelectorAll
methods were added to theNodeList
interface to allow for subquerying already selected elements
- A bug which caused the load binding callback to be executed twice when the
waitForAll
parameter was set totrue
was fixed.
- Additional load binding shortcuts available on the
Thin
function:DOMContentLoaded
event binding (document.readyState
=="interactive"
).window
load
event binding (document.readyState
=="complete"
).
- Initial Release.