Commit Graph
6681 Commits
Author SHA1 Message Date
Peter Dave Hello 42fe2ee901 Merge pull request #3471 from PeterDaveHello/AniJS
add new lib - AniJS
2014-06-27 04:33:56 +08:00
Peter Dave Hello d29df1540f add AniJS 2014-06-27 04:15:20 +08:00
Pete Cooper 5793d0a3a4 Fix moment-timezone
Add min’d version
2014-06-26 19:23:54 +01:00
Pete Cooper 627e6cdcd3 Fix leapjs
Source: https://github.com/leapmotion/leapjs/archive/v0.6.1.zip
2014-06-26 19:19:43 +01:00
Pete Cooper a3f75e72e5 Fix jszip
https://github.com/Stuk/jszip/archive/v2.3.0.zip

npm doesn’t match GitHub release
2014-06-26 19:16:11 +01:00
Pete Cooper a224d6814e Fixing codemirror min'd files 2014-06-26 19:11:24 +01:00
Pete Cooper c80206bab9 Restore cdnjs-specific .md files
Oops
2014-06-26 19:04:20 +01:00
Thomas Davis 47d939ba92 Updated packages via auto-update.js 2014-06-26 13:55:02 -04:00
Pete Cooper 51e3b7ad0f Delete Markdown files
Not required
2014-06-26 18:45:56 +01:00
Pete Cooper 70c8f29979 Update creditor to 4.4.2
Source:
http://download.cksource.com/CKEditor/CKEditor/CKEditor%204.4.2/ckeditor
_4.4.2_full.zip
2014-06-26 18:42:41 +01:00
Pete Cooper f9448c9ee4 Update twitter-bootstrap to 3.2.0
Source: npm install bootstrap
2014-06-26 18:06:01 +01:00
Pete Cooper d12c8a67c7 Merge pull request #3466 from mmoraga/master
Bumped backgrid.js to latest version (0.3.5) from
2014-06-26 17:51:03 +01:00
Pete Cooper 82cacda0eb Merge pull request #3467 from MartinMartimeo/jquery.tipsy-1.0.2
[author] Add jquery.tipsy v1.0.2
2014-06-26 17:50:09 +01:00
Pete Cooper 92a76e21a3 Bump p5 to 0.2.19
Source: npm install p5

/cc https://github.com/cdnjs/cdnjs/issues/3468 and @lmccart
2014-06-26 17:43:57 +01:00
Manuel 5d0d7c56c2 Bumped backgrid.js to latest version (0.3.5) from
https://www.npmjs.org/package/backgrid
2014-06-26 16:33:16 +02:00
Pete Cooper cb44e00f6e Merge pull request #3462 from DSpeichert/master
[NPM] Adding jsSHA library
2014-06-26 15:03:21 +01:00
Daniel Speichert bb3076b352 Fixing trailing comma 2014-06-26 09:40:59 -04:00
Martin Martimeo 503130d2ff Adding jquery.tipsy v1.0.2 2014-06-26 15:24:03 +02:00
Pete Cooper f01398aaeb Update angular 1.3.0 beta releases
Sources:
https://code.angularjs.org/1.3.0-beta.*/https://code.angularjs.org/1.3.0
-beta.10/angular-1.3.0-beta.*.zip
2014-06-26 10:57:52 +01:00
Pete Cooper d67c103af0 Update angular to 1.2.18
Source: https://code.angularjs.org/1.2.18/angular-1.2.18.zip
2014-06-26 10:49:00 +01:00
Pete Cooper b7939235b2 Update velocity to 0.2.1
https://github.com/julianshapiro/velocity/releases/*.zip
2014-06-26 10:24:42 +01:00
Pete Cooper 27aae7a1b0 Add epoch
Source: http://fastly.github.io/epoch/download/epoch.0.5.2.zip
2014-06-26 10:01:00 +01:00
Pete Cooper fbbc989054 Merge pull request #3463 from euler0/retina.js_v1.2.0
Add retina.js (1.2.0)
2014-06-26 09:08:14 +01:00
Ryan Kirkman 1f5add2c25 Merge pull request #3464 from greensock/master
Updating GSAP to 1.12.0
2014-06-26 00:32:21 -07:00
Daniel Speichert e4dd767a11 Fixing missing filename in package.json for jsSHA 2014-06-25 21:08:27 -04:00
Drew Freyling aa0f66d463 Merge pull request #3465 from abeMedia/master
Add jQuery Smoove v0.2.6 [author]
2014-06-26 10:58:03 +10:00
Adam Bouqdib e6bfb4e5f9 Create package.json 2014-06-25 23:56:02 +01:00
Adam Bouqdib 1ec6c75aef Create jquery.smoove.min.js 2014-06-25 23:55:37 +01:00
Jack Doyle 5a871a11cd 1.12.0
- Added lagSmoothing() feature that automatically heals from CPU spikes.

- Added "lazy" feature that lazy-renders the tween on the tick that it reads its starting values (to avoid the read/write/read/write layout thrashing in some browsers). It is enabled by default on all tweens except zero-duration ones (and set() calls), but you can override the default behavior by defining lazy:true or lazy:false as a special property of any tween.

- Added new force3D:"auto" value that forces 3D transforms to be used during the tween and then automatically switches back to 2D at the end of the tween if there are no 3D properties necessary (rotationX, rotationY, or z); this can help free up GPU memory, especially on mobile devices.

- AttrPlugin can now accommodate non-numeric values. For example, TweenLite.set("#img", {attr:{src:"photo.jpg"}});

- Improved Draggable's touch handling so that when the user taps on a UI element (like a checkbox) inside a Draggable, it works more intuitively. The event.preventDefault() is called in fewer circumstances now.

- Improved Draggable's compatibility with SVG elements.

- Added a "soft" disable() for Draggable that you can call like yourDraggable.disable("soft") in which case it won't remove the mouse/touch listeners, thus it is faster. You can kill() a Draggable if you don't plan to use it anymore.

- Deprecated Draggable's disable() and enable() methods in favor of a new enabled() method that can do both (disable and enable).

- Fixed an issue with Draggable's hitTest() method that caused an error in IE8.

- Fixed issue in jquery.gsap.js plugin that could cause an error with jQuery 2.1 and the way it handles the queue.

- Fixed an issue with IE8 opacity that could cause it not to read the current value properly if the CSS used an upper-case "O" in "Opacity".

- Worked around a browser issue that caused SVG elements not to report their transform properly which could cause string-based transform tweens not to work as expected.

- Improved compatibility with SVG className tweens.

- Fixed issue in TimelineLite's getTweensOf() method that would prevent it from finding tweens after it had completed or had been disabled.

- Fixed issue that caused reversed tweens not to complete in the correct direction when the "complete" parameter of TweenMax.killAll() was true.

- Fixed issue that could cause an infinite loop if the same vars objects are reused and flip-flopped in two fromTo() tweens.
2014-06-25 16:26:59 -05:00
Daniel Speichert 162d74ab95 Adding jsSHA library 2014-06-25 15:11:00 -04:00
Vincent Lee e70b3079d5 Add retina.js (1.2.0) 2014-06-26 04:07:25 +09:00
Pete Cooper ea4ea80ed7 Merge pull request #3461 from PeterDaveHello/Ink_v3.0.4
add Ink v3.0.4
2014-06-25 19:20:54 +01:00
Peter Dave Hello e7b33f62f3 add Ink v3.0.4 2014-06-26 00:33:13 +08:00
Pete Cooper acb563266e Merge pull request #3458 from thykka/master
pixi.js updated from 1.5.2 to 1.5.3
2014-06-25 09:07:44 +01:00
Pete Cooper 3a1c2f96ea Merge pull request #3446 from isaackwan/jgrowl-npm
Jgrowl npm
2014-06-25 08:43:38 +01:00
Pete Cooper 1f7f945197 Merge pull request #3455 from JGallardo/master
Updating dustjs
2014-06-25 08:41:20 +01:00
Pete Cooper 9b8d2c6b2e Merge pull request #3453 from isaackwan/yui-npm
npm config for yui
2014-06-25 08:40:52 +01:00
Pete Cooper 192b466ad1 Merge pull request #3456 from genealogysystems/master
Add chance
2014-06-25 08:40:23 +01:00
Pete Cooper f50f087403 Merge pull request #3459 from arshaw/master
[author] fullcalendar v2.0.2
2014-06-25 08:38:25 +01:00
Adam Shaw 489a186b13 fullcalendar v2.0.2 2014-06-24 22:48:06 -07:00
Moses Holmström b528c0ce0a Updated package.json for pixi.js 1.5.3 2014-06-25 08:22:45 +03:00
Moses Holmström e3fac44b3a Added pixi.dev.js (1.5.3)
cdnjs only had an older version of pixi.js; 1.5.2
2014-06-25 08:21:52 +03:00
Moses Holmström 00595358db Added pixi.js (1.5.3)
cdnjs only had an older version of pixi.js; 1.5.2
2014-06-25 08:21:06 +03:00
Justin York 5dc624f8a7 Add chance 2014-06-24 20:56:04 +00:00
Juan Gallardo 65786fde90 Updating dustjs
source: https://github.com/linkedin/dustjs/tree/master/dist
2014-06-24 11:53:44 -07:00
Pete Cooper 07a4803f40 Adding mathjax 2.0 (request)
https://github.com/mathjax/MathJax/archive/v2.0-latest.zip
2014-06-24 12:42:33 +01:00
Pete Cooper 2ef65dba08 Add mathjax 2.1 (request)
https://github.com/mathjax/MathJax/archive/v2.1-latest.zip
2014-06-24 11:34:03 +01:00
Pete Cooper 366f18ea74 Fix aui 2014-06-24 11:15:27 +01:00
Pete Cooper 162f5bd3ff Backfill aui 5.6.x (request)
Sources: https://bitbucket.org/atlassian/aui-dist/get/5.6.4.zip
https://bitbucket.org/atlassian/aui-dist/get/5.6.5.zip
https://bitbucket.org/atlassian/aui-dist/get/5.6.7.zip
https://bitbucket.org/atlassian/aui-dist/get/5.6.8.zip
2014-06-24 10:17:41 +01:00
Pete Cooper 20d5ec866c Update qui to 5.6.10
Source: https://bitbucket.org/atlassian/aui-dist/get/5.6.10.zip
2014-06-24 10:12:52 +01:00