-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed a bug concerning the box-sizing model
- Loading branch information
Showing
10 changed files
with
38 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -101,7 +101,7 @@ <h1 class="page-title">Source: jquery.scrollmagic.debug.js</h1> | |
by Jan Paepke 2014 (@janpaepke) | ||
http://janpaepke.github.io/ScrollMagic | ||
|
||
@version 1.0.0 | ||
@version 1.0.1 | ||
@license Dual licensed under MIT license and GPL. | ||
@author Jan Paepke - [email protected] | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,7 +109,7 @@ <h1 class="page-title">Source: jquery.scrollmagic.js</h1> | |
*/ | ||
/** | ||
@overview ##Info | ||
@version 1.0.0 | ||
@version 1.0.1 | ||
@license Dual licensed under MIT license and GPL. | ||
@author Jan Paepke - [email protected] | ||
|
||
|
@@ -1417,7 +1417,10 @@ <h1 class="page-title">Source: jquery.scrollmagic.js</h1> | |
.css({ | ||
position: pinCSS.position == "absolute" ? "absolute" : "relative", | ||
"margin-left": "auto", | ||
"margin-right": "auto" | ||
"margin-right": "auto", | ||
"box-sizing": "content-box", | ||
"-moz-box-sizing": "content-box", | ||
"-webkit-box-sizing": "content-box" | ||
}); | ||
|
||
if (pinCSS.position == "absolute" && settings.pushFollowers) { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
by Jan Paepke 2014 (@janpaepke) | ||
http://janpaepke.github.io/ScrollMagic | ||
@version 1.0.0 | ||
@version 1.0.1 | ||
@license Dual licensed under MIT license and GPL. | ||
@author Jan Paepke - [email protected] | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ Greensock License info at http://www.greensock.com/licensing/ | |
*/ | ||
/** | ||
@overview ##Info | ||
@version 1.0.0 | ||
@version 1.0.1 | ||
@license Dual licensed under MIT license and GPL. | ||
@author Jan Paepke - [email protected] | ||
|
@@ -1320,7 +1320,10 @@ Greensock License info at http://www.greensock.com/licensing/ | |
.css({ | ||
position: pinCSS.position == "absolute" ? "absolute" : "relative", | ||
"margin-left": "auto", | ||
"margin-right": "auto" | ||
"margin-right": "auto", | ||
"box-sizing": "content-box", | ||
"-moz-box-sizing": "content-box", | ||
"-webkit-box-sizing": "content-box" | ||
}); | ||
|
||
if (pinCSS.position == "absolute" && settings.pushFollowers) { | ||
|
Oops, something went wrong.