Skip to content

Commit

Permalink
update example
Browse files Browse the repository at this point in the history
  • Loading branch information
podefr committed Jun 17, 2013
1 parent 77e904b commit 2445a0c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Expand Up @@ -99,7 +99,7 @@ widget.plugins.addAll({
});

// Apply the behaviour to the DOM element selected via CSS selector
widget.alive( '.widget' );
widget.alive( document.querySelector('.widget') );
```


Expand Down Expand Up @@ -880,6 +880,10 @@ describe("SocketIOTransport wraps socket.io to issue requests and listen to Oliv

## Changelog

####1.4.2 - 10 JUNE 2013

* Fixed performance and memory issues with data-binding's item renderer when using virtualised grid. Check a 1,000,000 rows Grid using Olives data-binding: http://podefr.github.io/olives-virtualised-grid/

####1.4.1 - 13 MAY 2013

* Improved virtualisation performances in the data binding plugin when used with large data sets (>100,000 items)
Expand Down
11 changes: 9 additions & 2 deletions index.html
Expand Up @@ -6,6 +6,7 @@




<html>
<head>
<title>Olives - Create real-time HTML5 applications, in no time. By Olivier Scherrer &amp; Olivier Wietrich</title>
Expand Down Expand Up @@ -180,7 +181,7 @@ <h1>Olives.js</h1>
</p>
</div>

<div class="menu"><ul><li><a href="release/Olives-1.4.2.tgz">Download Olives</a></li><li class="H2"><a href="#whatisolives">What is Olives?</a></li>
<div class="menu"><ul><li><a href="release/Olives-1.4.0.tgz">Download Olives</a></li><li class="H2"><a href="#whatisolives">What is Olives?</a></li>
<li class="H2"><a href="#howdoiinstallit">How do I install it?</a></li>
<li class="H2"><a href="#integrationtests">Integration tests:</a></li>
<li class="H3"><a href="#oobject">OObject</a></li>
Expand Down Expand Up @@ -302,7 +303,7 @@ <h1>Olives.js</h1>
});

// Apply the behaviour to the DOM element selected via CSS selector
widget.alive( '.widget' );
widget.alive( document.querySelector('.widget') );
</code></pre>

<h2 id="howdoiinstallit">How do I install it?<a href="#top">top</a></h2>
Expand Down Expand Up @@ -1071,6 +1072,12 @@ <h2 id="liveexamples">Live examples<a href="#top">top</a></h2>

<h2 id="changelog">Changelog<a href="#top">top</a></h2>

<h4 id="14210june2013">1.4.2 - 10 JUNE 2013</h4>

<ul>
<li>Fixed performance and memory issues with data-binding's item renderer when using virtualised grid. Check a 1,000,000 rows Grid using Olives data-binding: http://podefr.github.io/olives-virtualised-grid/</li>
</ul>

<h4 id="14113may2013">1.4.1 - 13 MAY 2013</h4>

<ul>
Expand Down

0 comments on commit 2445a0c

Please sign in to comment.