Bundled output for commit 6042b001f0 [skip ci]
This commit is contained in:
parent
6042b001f0
commit
7140c483c6
3 changed files with 11 additions and 4 deletions
11
mithril.js
11
mithril.js
|
|
@ -1512,8 +1512,15 @@ m.withAttr = function(attrName, callback, context) {
|
|||
callback.call(context || this, attrName in e.currentTarget ? e.currentTarget[attrName] : e.currentTarget.getAttribute(attrName))
|
||||
}
|
||||
}
|
||||
var _29 = coreRenderer(window)
|
||||
m.render = _29.render
|
||||
m.prop = function (store) {
|
||||
return {
|
||||
get: function() { return store },
|
||||
toJSON: function() { return store },
|
||||
set: function(value0) { return store = value0 }
|
||||
}
|
||||
}
|
||||
var _30 = coreRenderer(window)
|
||||
m.render = _30.render
|
||||
m.redraw = redrawService.redraw
|
||||
m.request = requestService.request
|
||||
m.jsonp = requestService.jsonp
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue