=doc #17329 Fixed and normalized spellings in ScalaDoc and comments

This commit is contained in:
Andrey Myatlyuk 2015-06-02 21:01:00 -07:00
parent 10f039f70d
commit bc791eb86c
77 changed files with 100 additions and 100 deletions

View file

@ -94,7 +94,7 @@ $.extend($.effects, {
// The main function to form the object for animation
for(var n in newStyle) {
if( typeof newStyle[n] != "function" && newStyle[n] /* No functions and null properties */
&& n.indexOf("Moz") == -1 && n.indexOf("length") == -1 /* No mozilla spezific render properties. */
&& n.indexOf("Moz") == -1 && n.indexOf("length") == -1 /* No mozilla specific render properties. */
&& newStyle[n] != oldStyle[n] /* Only values that have changed are used for the animation */
&& (n.match(/color/i) || (!n.match(/color/i) && !isNaN(parseInt(newStyle[n],10)))) /* Only things that can be parsed to integers or colors */
&& (oldStyle.position != "static" || (oldStyle.position == "static" && !n.match(/left|top|bottom|right/))) /* No need for positions when dealing with static positions */