Comparing version 0.12.2 to 0.12.3
0.12.3 / 2011-06-21 | ||
================== | ||
* Fixed empty strings support. Closes #223 | ||
* Fixed conditional comments documentation. Closes #245 | ||
0.12.2 / 2011-06-16 | ||
@@ -3,0 +9,0 @@ ================== |
@@ -22,3 +22,3 @@ | ||
exports.version = '0.12.2'; | ||
exports.version = '0.12.3'; | ||
@@ -92,3 +92,3 @@ /** | ||
, val = obj[key]; | ||
if (typeof val === 'boolean' || val === '' || val == null) { | ||
if ('boolean' == typeof val || null == val) { | ||
if (val) { | ||
@@ -95,0 +95,0 @@ terse |
{ | ||
"name": "jade", | ||
"description": "Jade template engine", | ||
"version": "0.12.2", | ||
"version": "0.12.3", | ||
"author": "TJ Holowaychuk <tj@vision-media.ca>", | ||
@@ -6,0 +6,0 @@ "repository": "git://github.com/visionmedia/jade", |
@@ -266,3 +266,3 @@ | ||
body | ||
/if IE | ||
//if IE | ||
a(href='http://www.mozilla.com/en-US/firefox/') Get Firefox | ||
@@ -269,0 +269,0 @@ |
Sorry, the diff of this file is not supported yet
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
154832