Skip to content

Commit

Permalink
fix test.
Browse files Browse the repository at this point in the history
  • Loading branch information
chjj committed Feb 2, 2014
1 parent 5c9b558 commit d28870d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/list
@@ -1 +1 @@
with($) { var __out = []; __out.push("<ol>\n\n "); each(list, function(v) {; __out.push("\n <li>\n <a href=\"", (this.href), "\">", (this.text), "</a>\n\n "); if ((typeof this.datetime !== "undefined" && this.datetime)) {; __out.push("\n <time datetime=\"", (this.datetime), "\">\n ", (this.time), "\n </time> \n "); }; __out.push("\n </li> \n "); }); __out.push("\n\n "); each(list2, function(v) {; __out.push("\n <li>\n <a href=\"", (this.href), "\">", (this.text), "</a>\n\n "); if ((typeof this.datetime !== "undefined" && this.datetime)) {; __out.push("\n <time datetime=\"", (this.datetime), "\">\n ", (this.time), "\n </time> \n "); }; __out.push("\n </li> \n "); }); __out.push("\n</ol>"); return __out.join(""); }
with ($) { var __out = []; __out.push("<ol>"); each(list, function() { __out.push("<li><a href=\"", (this.href), "\">", (this.text), "</a>"); if ((typeof this.datetime !== "undefined" && this.datetime)) { __out.push("<time datetime=\"", (this.datetime), "\">", (this.time), "</time>"); } __out.push("</li>"); }); __out.push(""); each(list2, function() { __out.push("<li><a href=\"", (this.href), "\">", (this.text), "</a>"); if ((typeof this.datetime !== "undefined" && this.datetime)) { __out.push("<time datetime=\"", (this.datetime), "\">", (this.time), "</time>"); } __out.push("</li>"); }); __out.push("</ol>"); return __out.join(""); }

0 comments on commit d28870d

Please sign in to comment.