Comparing version 2.1.1 to 2.1.2
@@ -0,1 +1,4 @@ | ||
## 2.1.2 - 31 Dec. 2016 | ||
* Internal code update. | ||
## 2.1.1 - 28 Dec. 2016 | ||
@@ -2,0 +5,0 @@ * Fixes a bug in self closing ignore directive (Fixes [#88](https://github.com/MohammadYounes/rtlcss/issues/88)). |
@@ -15,6 +15,7 @@ 'use strict' | ||
if (!this.endNode && metadata.begin && metadata.end) { | ||
while (node && node.nodes) { | ||
node = node.nodes[node.nodes.length - 1] | ||
var n = node | ||
while (n && n.nodes) { | ||
n = n.nodes[n.nodes.length - 1] | ||
} | ||
this.endNode = node | ||
this.endNode = n | ||
} | ||
@@ -21,0 +22,0 @@ var prevent = true |
{ | ||
"author": "Mohammad Younes", | ||
"name": "rtlcss", | ||
"version": "2.1.1", | ||
"version": "2.1.2", | ||
"description": "Framework for transforming cascading style sheets (CSS) from left-to-right (LTR) to right-to-left (RTL)", | ||
@@ -6,0 +6,0 @@ "homepage": "http://rtlcss.com/", |
Sorry, the diff of this file is not supported yet
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
134352
3144