Standalone. I'm loading can.jquery.js, can.map.delegate.js, and
can.stache.js
Given 'templates/index.stache' is
<div id="user-info">
<div class="content">
<div
class="logo-shield"></div>
<h2> {{ fullName }}
</h2>
</div>
</div>
and a js file like:
var testData = {
fullName:
"Bob Roberts"
};
var example =
can.view('templates/index', testData);
I get the error...