Comparing version 20.3.0 to 20.3.1
# CHANGELOG | ||
## 20.3.1 | ||
Fixed sprite resolution selection. | ||
## 20.3.0 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "bobril", | ||
"version": "20.3.0", | ||
"version": "20.3.1", | ||
"description": "Component Oriented MVC Framework with virtual DOM and CSS", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -342,6 +342,4 @@ import { CSSStyles, CSSPseudoStyles, CSSStylesItem, CSSInlineStyles } from "./cssTypes"; | ||
for (let i = 0; i < bundlePath2.length; i++) { | ||
if (i == bundlePath2.length - 1 || bundlePath2[i]![1] >= lastDppx) { | ||
newSpriteUrl = bundlePath2[i]![0]; | ||
newSpriteDppx = bundlePath2[i]![1]; | ||
} else break; | ||
[newSpriteUrl, newSpriteDppx] = bundlePath2[i]!; | ||
if (newSpriteDppx >= lastDppx) break; | ||
} | ||
@@ -348,0 +346,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
315
1
1
12
391161
9305