Prebuilt module for commit ff82e43d2f

This commit is contained in:
Paper.js Bot 2016-04-07 03:24:14 +00:00
parent d71cb9729f
commit 2bed8210b9
5 changed files with 17 additions and 20 deletions

View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Apr 6 20:05:32 2016 -0700
* Date: Wed Apr 6 20:17:13 2016 -0700
*
***
*
@ -13361,12 +13361,11 @@ new function() {
var stops = gradient._stops;
for (var i = 0, l = stops.length; i < l; i++) {
var stop = stops[i],
offset = stop._rampPoint,
stopColor = stop._color,
alpha = stopColor.getAlpha();
attrs = {};
if (offset != null)
attrs.offset = offset;
attrs = {
offset: stop._rampPoint || i / (l - 1)
};
if (stopColor)
attrs['stop-color'] = stopColor.toCSS(true);
if (alpha < 1)

9
dist/paper-core.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Apr 6 20:05:32 2016 -0700
* Date: Wed Apr 6 20:17:13 2016 -0700
*
***
*
@ -13361,12 +13361,11 @@ new function() {
var stops = gradient._stops;
for (var i = 0, l = stops.length; i < l; i++) {
var stop = stops[i],
offset = stop._rampPoint,
stopColor = stop._color,
alpha = stopColor.getAlpha();
attrs = {};
if (offset != null)
attrs.offset = offset;
attrs = {
offset: stop._rampPoint || i / (l - 1)
};
if (stopColor)
attrs['stop-color'] = stopColor.toCSS(true);
if (alpha < 1)

File diff suppressed because one or more lines are too long

9
dist/paper-full.js vendored
View file

@ -9,7 +9,7 @@
*
* All rights reserved.
*
* Date: Wed Apr 6 20:05:32 2016 -0700
* Date: Wed Apr 6 20:17:13 2016 -0700
*
***
*
@ -13361,12 +13361,11 @@ new function() {
var stops = gradient._stops;
for (var i = 0, l = stops.length; i < l; i++) {
var stop = stops[i],
offset = stop._rampPoint,
stopColor = stop._color,
alpha = stopColor.getAlpha();
attrs = {};
if (offset != null)
attrs.offset = offset;
attrs = {
offset: stop._rampPoint || i / (l - 1)
};
if (stopColor)
attrs['stop-color'] = stopColor.toCSS(true);
if (alpha < 1)

File diff suppressed because one or more lines are too long