Skip to content

Commit 96c7b1f

Browse files
committed
Update components to latest version
1 parent e62ee76 commit 96c7b1f

File tree

622 files changed

+100
-42502
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

622 files changed

+100
-42502
lines changed

Diff for: bower.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
"ignore": [],
66
"dependencies": {
77
"jquery": "1.11.1",
8-
"normalize-scss": "3.0.1",
8+
"normalize-scss": "3.0.2",
99
"modernizr": "2.8.3",
10-
"sass-mixins": "0.10.0"
10+
"sass-mixins": "0.11.0"
1111
},
1212
"devDependencies": {
1313
"jquery-requestAnimationFrame": "~0.1.2"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
/*! jQuery requestAnimationFrame - v0.1.2 - 2013-04-15
2+
* https://github.com/gnarf37/jquery-requestAnimationFrame
3+
* Copyright (c) 2013 Corey Frang; Licensed MIT */
4+
5+
(function( $ ) {
6+
7+
// requestAnimationFrame polyfill adapted from Erik Möller
8+
// fixes from Paul Irish and Tino Zijdel
9+
// http://paulirish.com/2011/requestanimationframe-for-smart-animating/
10+
// http://my.opera.com/emoller/blog/2011/12/20/requestanimationframe-for-smart-er-animating
11+
12+
13+
var animating,
14+
lastTime = 0,
15+
vendors = ['webkit', 'moz'],
16+
requestAnimationFrame = window.requestAnimationFrame,
17+
cancelAnimationFrame = window.cancelAnimationFrame;
18+
19+
for(; lastTime < vendors.length && !requestAnimationFrame; lastTime++) {
20+
requestAnimationFrame = window[ vendors[lastTime] + "RequestAnimationFrame" ];
21+
cancelAnimationFrame = cancelAnimationFrame ||
22+
window[ vendors[lastTime] + "CancelAnimationFrame" ] ||
23+
window[ vendors[lastTime] + "CancelRequestAnimationFrame" ];
24+
}
25+
26+
function raf() {
27+
if ( animating ) {
28+
requestAnimationFrame( raf );
29+
jQuery.fx.tick();
30+
}
31+
}
32+
33+
if ( requestAnimationFrame ) {
34+
// use rAF
35+
window.requestAnimationFrame = requestAnimationFrame;
36+
window.cancelAnimationFrame = cancelAnimationFrame;
37+
jQuery.fx.timer = function( timer ) {
38+
if ( timer() && jQuery.timers.push( timer ) && !animating ) {
39+
animating = true;
40+
raf();
41+
}
42+
};
43+
44+
jQuery.fx.stop = function() {
45+
animating = false;
46+
};
47+
} else {
48+
// polyfill
49+
window.requestAnimationFrame = function( callback, element ) {
50+
var currTime = new Date().getTime(),
51+
timeToCall = Math.max( 0, 16 - ( currTime - lastTime ) ),
52+
id = window.setTimeout( function() {
53+
callback( currTime + timeToCall );
54+
}, timeToCall );
55+
lastTime = currTime + timeToCall;
56+
return id;
57+
};
58+
59+
window.cancelAnimationFrame = function(id) {
60+
clearTimeout(id);
61+
};
62+
63+
}
64+
65+
}( jQuery ));

Diff for: components/jquery-requestAnimationFrame/dist/jquery.requestAnimationFrame.min.js

+4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: components/normalize-scss/.bower.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "normalize-scss",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"main": "_normalize.scss",
55
"author": [
66
"Nicolas Gallagher",
@@ -14,13 +14,13 @@
1414
"test.html"
1515
],
1616
"homepage": "https://github.com/appleboy/normalize.scss",
17-
"_release": "3.0.1",
17+
"_release": "3.0.2",
1818
"_resolution": {
1919
"type": "version",
20-
"tag": "3.0.1",
21-
"commit": "117090a8fe14c6b492f63eef5439ae14a43b3336"
20+
"tag": "3.0.2",
21+
"commit": "848433d2742f4d1d5842bcaa90c1e9a170434151"
2222
},
2323
"_source": "git://github.com/appleboy/normalize.scss.git",
24-
"_target": "3.0.1",
24+
"_target": "3.0.2",
2525
"_originalSource": "normalize-scss"
2626
}

Diff for: components/normalize-scss/README.md

+4-8
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,15 @@ normalizing.
99

1010
[View the test file](http://necolas.github.io/normalize.css/latest/test.html)
1111

12-
## Install with Bower
13-
14-
Install with [Bower](http://bower.io/): `bower install --save normalize-scss`
15-
1612
## Install
1713

18-
Download from the [project page](http://necolas.github.io/normalize.css/).
14+
Download from the [project page](https://github.com/appleboy/normalize.scss).
1915

20-
Install with [Component(1)](https://github.com/component/component/): `component install necolas/normalize.css`
16+
Install with [Component(1)](https://github.com/component/component/): `component install appleboy/normalize.scss`
2117

22-
Install with [npm](http://npmjs.org/): `npm install --save normalize.css`
18+
Install with [npm](http://npmjs.org/): `npm install --save normalize-scss`
2319

24-
Install with [Bower](http://bower.io/): `bower install --save normalize.css`
20+
Install with [Bower](http://bower.io/): `bower install --save normalize-scss`
2521

2622
## What does it do?
2723

Diff for: components/normalize-scss/_normalize.scss

+4-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ body {
4242

4343
/**
4444
* Correct `block` display not defined for any HTML5 element in IE 8/9.
45-
* Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
45+
* Correct `block` display not defined for `details` or `summary` in IE 10/11
46+
* and Firefox.
4647
* Correct `block` display not defined for `main` in IE 11.
4748
*/
4849

@@ -55,6 +56,7 @@ footer,
5556
header,
5657
hgroup,
5758
main,
59+
menu,
5860
nav,
5961
section,
6062
summary {
@@ -106,7 +108,7 @@ template {
106108
*/
107109

108110
a {
109-
background: transparent;
111+
background-color: transparent;
110112
}
111113

112114
/**

Diff for: components/normalize-scss/bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "normalize-scss",
3-
"version": "3.0.1",
3+
"version": "3.0.2",
44
"main": "_normalize.scss",
55
"author": ["Nicolas Gallagher", "Bo-Yi Wu"],
66
"ignore": [

Diff for: components/requirejs/.bower.json

-14
This file was deleted.

Diff for: components/requirejs/.gitignore

-8
This file was deleted.

Diff for: components/requirejs/LICENSE

-58
This file was deleted.

Diff for: components/requirejs/README.md

-51
This file was deleted.

0 commit comments

Comments
 (0)