Skip to content

Commit

Permalink
01/22/2012 *0.2 Build 20*
Browse files Browse the repository at this point in the history
--------------------------

* Added dirty rectangles clear support.
  To be enabled a call director.setClear( CAAT.Director.CLEAR_DIRTY_RECTS ); must be performed.
  Every actor which changes affine transformation, either position, rotation or scale, will automatically
  be invalidated. In you want any other actor to be explicitly invalidated, just call actor.invalidate();
* Cleaned some ctx.save/restore code.
* Modified license file to reflect copyright 2012.
* Removed some debug code.
  • Loading branch information
hyperandroid committed Jan 23, 2012
1 parent be36749 commit d895651
Show file tree
Hide file tree
Showing 59 changed files with 1,681 additions and 1,641 deletions.
3 changes: 2 additions & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ src/lib/Box2dWeb-2.1.a.3.js:
Erin Catto http://www.gphysics.com

Thanks:
Mario Gonzalez [@onedayitwillmake]
Mario Gonzalez [@onedayitwillmake]
Rob Boerman [@robboerman]

4 changes: 2 additions & 2 deletions build/caat-box2d-min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions build/caat-box2d.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Version: 0.2 build: 34
Version: 0.2 build: 38
Created on:
DATE: 2012-01-23
TIME: 18:06:09
TIME: 23:04:32
*/


Expand Down
74 changes: 37 additions & 37 deletions build/caat-css-min.js

Large diffs are not rendered by default.

33 changes: 21 additions & 12 deletions build/caat-css.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Version: 0.2 build: 34
Version: 0.2 build: 38
Created on:
DATE: 2012-01-23
TIME: 18:06:09
TIME: 23:04:32
*/


Expand Down Expand Up @@ -8096,7 +8096,7 @@ var cp1= proxy(
if ( this.dirtyRectsEnabled ) {

ctx.beginPath();

ctx.rect(0,0,120,40);
var dr= this.cDirtyRects;
for( i=0; i<dr.length; i++ ) {
var drr= dr[i];
Expand Down Expand Up @@ -8198,19 +8198,28 @@ var cp1= proxy(

var i, dr, j, drj;
var cdr= this.cDirtyRects;

for( i=0; i<cdr.length; i++ ) {
dr= cdr[i];
if ( dr.intersects( rectangle ) ) {
dr.unionRectangle( rectangle );

for( j=0; j<cdr.length; j++ ) {
if ( j!==i ) {
drj= cdr[j];
if ( drj.intersects( dr ) ) {
dr.unionRectangle( drj );
drj.setEmpty();
if ( !dr.isEmpty() && dr.intersects( rectangle ) ) {
var intersected= true;
while( intersected ) {
dr.unionRectangle( rectangle );

for( j=0; j<cdr.length; j++ ) {
if ( j!==i ) {
drj= cdr[j];
if ( !drj.isEmpty() && drj.intersects( dr ) ) {
dr.unionRectangle( drj );
drj.setEmpty();
break;
}
}
}

if ( j==cdr.length ) {
intersected= false;
}
}

for( j=0; j<cdr.length; j++ ) {
Expand Down
72 changes: 36 additions & 36 deletions build/caat-min.js

Large diffs are not rendered by default.

33 changes: 21 additions & 12 deletions build/caat.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Version: 0.2 build: 34
Version: 0.2 build: 38

Created on:
DATE: 2012-01-23
TIME: 18:06:09
TIME: 23:04:31
*/


Expand Down Expand Up @@ -9153,7 +9153,7 @@ var cp1= proxy(
if ( this.dirtyRectsEnabled ) {

ctx.beginPath();

ctx.rect(0,0,120,40);
var dr= this.cDirtyRects;
for( i=0; i<dr.length; i++ ) {
var drr= dr[i];
Expand Down Expand Up @@ -9255,19 +9255,28 @@ var cp1= proxy(

var i, dr, j, drj;
var cdr= this.cDirtyRects;

for( i=0; i<cdr.length; i++ ) {
dr= cdr[i];
if ( dr.intersects( rectangle ) ) {
dr.unionRectangle( rectangle );

for( j=0; j<cdr.length; j++ ) {
if ( j!==i ) {
drj= cdr[j];
if ( drj.intersects( dr ) ) {
dr.unionRectangle( drj );
drj.setEmpty();
if ( !dr.isEmpty() && dr.intersects( rectangle ) ) {
var intersected= true;
while( intersected ) {
dr.unionRectangle( rectangle );

for( j=0; j<cdr.length; j++ ) {
if ( j!==i ) {
drj= cdr[j];
if ( !drj.isEmpty() && drj.intersects( dr ) ) {
dr.unionRectangle( drj );
drj.setEmpty();
break;
}
}
}

if ( j==cdr.length ) {
intersected= false;
}
}

for( j=0; j<cdr.length; j++ ) {
Expand Down
4 changes: 2 additions & 2 deletions changelog
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
01/22/2012 *0.2 Build 34*
01/23/2012 *0.2 Build 38*
--------------------------

* Updated dirty rects code. Was drawing the whole scene. Sorry for the inconvenience.
* Improved Dirty rects performance.

01/22/2012 *0.2 Build 20*
--------------------------
Expand Down
2 changes: 1 addition & 1 deletion documentation/jsdoc/files.html
Original file line number Diff line number Diff line change
Expand Up @@ -696,7 +696,7 @@ <h2><a href="symbols/src/_Users_ibon_js_CAAT_src_webgl_ShaderUtil.js.html">/User
</div>
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blankt">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:09 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blankt">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:05:00 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ <h2><a href="symbols/Function.html">Function</a></h2>
</div>
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blankt">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:09 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blankt">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:05:00 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.Actor.html
Original file line number Diff line number Diff line change
Expand Up @@ -4570,7 +4570,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:56 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.ActorContainer.html
Original file line number Diff line number Diff line change
Expand Up @@ -1418,7 +1418,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.AudioManager.html
Original file line number Diff line number Diff line change
Expand Up @@ -1127,7 +1127,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.B2DBodyActor.html
Original file line number Diff line number Diff line change
Expand Up @@ -1227,7 +1227,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.B2DCircularBody.html
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.B2DPolygonBody.html
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.Bezier.html
Original file line number Diff line number Diff line change
Expand Up @@ -1022,7 +1022,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.CatmullRom.html
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.Color.RGB.html
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.Color.html
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.Curve.html
Original file line number Diff line number Diff line change
Expand Up @@ -969,7 +969,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.CurvePath.html
Original file line number Diff line number Diff line change
Expand Up @@ -1205,7 +1205,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:06 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:57 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.Director.html
Original file line number Diff line number Diff line change
Expand Up @@ -4425,7 +4425,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:07 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.Font.html
Original file line number Diff line number Diff line change
Expand Up @@ -914,7 +914,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:07 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.IMActor.html
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:07 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.IMBump.html
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:07 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.IMPlasma.html
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:07 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.IMRotoZoom.html
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:07 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.ImagePreloader.html
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:07 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.ImageProcessor.html
Original file line number Diff line number Diff line change
Expand Up @@ -960,7 +960,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:07 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.Interpolator.html
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:07 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.InterpolatorActor.html
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:08 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion documentation/jsdoc/symbols/CAAT.KeyEvent.html
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,7 @@ <h1 class="classTitle">
<!-- ============================== footer ================================= -->
<div class="fineprint" style="clear:both">

Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Sun Jan 22 2012 18:11:08 GMT+0100 (CET)
Documentation generated by <a href="http://code.google.com/p/jsdoc-toolkit/" target="_blank">JsDoc Toolkit</a> 2.4.0 on Mon Jan 23 2012 23:04:58 GMT+0100 (CET)
</div>
</body>
</html>
Loading

0 comments on commit d895651

Please sign in to comment.