Location: A review of cardiac cellular electrophysiology models @ 797bc599b7ec / dojo-presentation / js / dojo / dojox / dtl / tests / html / buffer.js

Author:
David Nickerson <david.nickerson@gmail.com>
Date:
2021-09-15 23:15:11+12:00
Desc:
update jupyter notebook with FK model results
Permanent Source URI:
https://models.cellml.org/workspace/a1/rawfile/797bc599b7ec66eef984e817d4ce138aabd116a6/dojo-presentation/js/dojo/dojox/dtl/tests/html/buffer.js

dojo.provide("dojox.dtl.tests.html.buffer");

dojo.require("dojox.dtl.html");
dojo.require("dojox.dtl.Context");
dojo.require("dojox.dtl.tests.html.util");

doh.register("dojox.dtl.html.buffer", 
	[
		function test_insertion_order_text(t){
			var dd = dojox.dtl;

			var context = new dd.Context({
				first: false,
				last: false
			});

			var template = new dd.HtmlTemplate("<div>{% if first %}first{% endif %}middle{% if last %}last{% endif %}</div>");
			t.is("<div>middle</div>", dd.tests.html.util.render(template, context));

			context.first = true;
			t.is("<div>firstmiddle</div>", dd.tests.html.util.render(template, context));

			context.first = false;
			context.last = true;
			t.is("<div>middlelast</div>", dd.tests.html.util.render(template, context));

			context.first = true;
			t.is("<div>firstmiddlelast</div>", dd.tests.html.util.render(template, context));
		}
	]
);