You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 16, 2022. It is now read-only.
I want to mark some days depending on the result of the fetch being executed for each redraw.
I inspected the code and found that it could be done through a change of fill-method e.g.
function fill (target) {
var root_element = target.__pickmeup.element,
...
if (!options.userdata && options.update_userdata) {
return options.update_userdata(function (err, res) {
options.userdata = err || res;
fill(target);
});
}
...
options.userdata = null;
dom_dispatch_event(target, 'fill');
}
I want to mark some days depending on the result of the fetch being executed for each redraw.
I inspected the code and found that it could be done through a change of
fill
-method e.g.And usage
But I don't like it :( Maybe there is a more elegant solution?
The text was updated successfully, but these errors were encountered: