-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog.txt
41 lines (34 loc) · 1.44 KB
/
ChangeLog.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
CHANGELOG
----------------------
v0.2.2
[2013-11-29]
* [Added]: .render() method on jQuery elements
* [Fixed]: Added shim for String.prototype.trim()
v0.2.1
[2013-11-21]
* [Fixed]: some tags not rendering (<p>, <i>) (incorrect detection of input tags)
v0.2.0
[2012-10-29]
* Full code refactoring.
* [Added]: New syntax for class attribute : data-bind="class[val1|val2]=path.to.data"
* [Fixed]: 'data-render-if' now works with 'data-each'
v0.1.1
[2012-10-25]
* Added ChangeLog
* Preparing to tag v0.1.1 before full rewriting
[2012-10-23]
* corrected main location
* Temples.render(data) will automatically register the whole document as template and render the full page with the provided data
* First build of the minified version
* strange shorter syntax improvement : $root.each(bindIterator).each(bind);
[2012-10-22]
* Code reorganization + lots of comments
* Remove the binding attributes once the binding is done. Results in cleaner output.
* Fix : create a special kind of binding for elements that have only the render-data-if attribute
* Renderer.parse() : Add the root element itself to the parsed elements set
* Added conditional-rendering and data-each as a synonym to data-iterate
* Iteration block alternate syntax
[2012-10-20]
* fixed : $().val() instead of $().value(), String.prototype.startsWith() not present.
* extractData() can now invoke methods on the provided objects. Useful for the plugins extension mechanism.
* First commit