total5 0.0.14-6 → 0.0.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/changelog.txt CHANGED
@@ -16,6 +16,7 @@
16
16
  - improved parsing `<links>` in the markdown parser
17
17
  - fixed a check of the file body for JPEG files during the upload process
18
18
  - added `/version` file that can contain a version
19
+ - fixed language in the `TEMPLATE`
19
20
 
20
21
  ========================
21
22
  0.0.13
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "total5",
3
- "version": "0.0.14-6",
3
+ "version": "0.0.14",
4
4
  "description": "Total.js framework v5",
5
5
  "main": "index.js",
6
6
  "directories": {
package/templates.js CHANGED
@@ -117,7 +117,7 @@ exports.render = function(body, model, $) {
117
117
 
118
118
  function parse(body, $) {
119
119
 
120
- if ($ && $.language)
120
+ if ($ && $.language != null)
121
121
  body = F.translate($.language, body);
122
122
 
123
123
  var helpers = {};