Comparing version 1.4.4 to 1.5.0
@@ -0,3 +1,9 @@ | ||
# 1.5.0 Bug as a Service | ||
- Fix an issue where the templating service would throw an error | ||
# 1.4.4 Unsubscribe As Authored | ||
- Introduced `_unsubscribe` layout property, making it optional _(but still a merge variable when using the Mandrill provider)_ | ||
# 1.4.3 Easy Going | ||
@@ -4,0 +10,0 @@ |
@@ -14,3 +14,3 @@ { | ||
}, | ||
"version": "1.4.4", | ||
"version": "1.5.0", | ||
"licenses": "MIT", | ||
@@ -17,0 +17,0 @@ "keywords": [ |
@@ -28,3 +28,3 @@ 'use strict'; | ||
} | ||
options.engine.render(options.layout, layoutModel, done); | ||
options.templateEngine.render(options.layout, layoutModel, done); | ||
}; | ||
@@ -35,8 +35,8 @@ } | ||
render: function (file, model, done) { | ||
options.engine.render(file, model, getCallback(model, done)); | ||
options.templateEngine.render(file, model, getCallback(model, done)); | ||
}, | ||
renderString: function (template, model, done) { | ||
options.engine.renderString(template, model, getCallback(model, done)); | ||
options.templateEngine.renderString(template, model, getCallback(model, done)); | ||
} | ||
}; | ||
}; |
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
46503