Skip to content

Commit

Permalink
build:0.9.72
Browse files Browse the repository at this point in the history
  • Loading branch information
tenbits committed Jun 6, 2015
1 parent cc3070e commit c3abce3
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 6 deletions.
2 changes: 1 addition & 1 deletion browser/libraries/mask.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion browser/libraries/mask.min.js.map

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions exports-dev.js
Expand Up @@ -13108,6 +13108,18 @@ function __eval(source, include) {
attr[key] = ensureTemplateFunction(attr[key]);
}

if (c === 62) {
var nextI = cursor_skipWhitespace(str, i + 1, imax);
var nextC = str.charCodeAt(nextI);
if (nextC !== 34 && nextC !== 39){
// "'
var node = new Dom.Node(name, parent);
node.attr = attr;
// `>` handle single without literal as generic mask node
return [ node, i, go_tag ];
}
}

end = i;
hasBody = c === 123 || c === 62;

Expand Down
2 changes: 1 addition & 1 deletion exports.js

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions globals-dev.js
Expand Up @@ -13108,6 +13108,18 @@ function __eval(source, include) {
attr[key] = ensureTemplateFunction(attr[key]);
}

if (c === 62) {
var nextI = cursor_skipWhitespace(str, i + 1, imax);
var nextC = str.charCodeAt(nextI);
if (nextC !== 34 && nextC !== 39){
// "'
var node = new Dom.Node(name, parent);
node.attr = attr;
// `>` handle single without literal as generic mask node
return [ node, i, go_tag ];
}
}

end = i;
hasBody = c === 123 || c === 62;

Expand Down
2 changes: 1 addition & 1 deletion globals.js

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions index-dev.js
Expand Up @@ -13108,6 +13108,18 @@ function __eval(source, include) {
attr[key] = ensureTemplateFunction(attr[key]);
}

if (c === 62) {
var nextI = cursor_skipWhitespace(str, i + 1, imax);
var nextC = str.charCodeAt(nextI);
if (nextC !== 34 && nextC !== 39){
// "'
var node = new Dom.Node(name, parent);
node.attr = attr;
// `>` handle single without literal as generic mask node
return [ node, i, go_tag ];
}
}

end = i;
hasBody = c === 123 || c === 62;

Expand Down
2 changes: 1 addition & 1 deletion index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "atma-libs",
"description": "Atma.js Library Package",
"version": "0.9.71",
"version": "0.9.72",
"homepage": "http://atmajs.com/",
"contributors": [],
"author": "Alex Kit <alex.kit@atmajs.com>",
Expand Down

0 comments on commit c3abce3

Please sign in to comment.