cherifGsoul on document-inserted-removed-can6
Add inserted/removed events to … (compare)
greenkeeper[bot] on can-view-live-5.0.1
fix(package): update can-view-l… (compare)
greenkeeper[bot] on core-js-3.4.8
chore(package): update core-js … (compare)
cherifGsoul on update-infrastructure-page
Update infrastructure page with… (compare)
greenkeeper[bot] on @feathersjs
chore(package): update @feather… (compare)
greenkeeper[bot] on @feathersjs
chore(package): update @feather… (compare)
var fn = ignore(function() { setTimeout(function{ .... } } )
fn(); // You'll get the real setTimeout
new XMLHttpRequest()
and we'll know to wait for that
return User.getList()
and we know about it
define([
"module",
"can/view/stache/stache",
"can/view/stache/mustache_core"
],function(module, stache, mustacheCore){
var renderer = stache([{"tokenType":"start","args":["p",false]},{"tokenType":"end","args":["p",false]},{"tokenType":"chars","args":["I'm a little tea pot"]},{"tokenType":"close","args":["p"]},{"tokenType":"done","args":[]}]);
can.view.preload("test_stache", renderer);
return function(scope, options, nodeList){
var moduleOptions = { module: module };
if(!(options instanceof mustacheCore.Options)) {
options = new mustacheCore.Options(options || {});
}
return renderer(scope, options.add(moduleOptions), nodeList);
};
});