Bundled output for commit 6042b001f0 [skip ci]

This commit is contained in:
Gandalf-the-Bot 2018-11-07 17:20:53 +00:00
parent 6042b001f0
commit 7140c483c6
3 changed files with 11 additions and 4 deletions

View file

@ -18,7 +18,7 @@ mithril.js [![NPM Version](https://img.shields.io/npm/v/mithril.svg)](https://ww
## What is Mithril?
A modern client-side Javascript framework for building Single Page Applications. It's small (<!-- size -->8.87 KB<!-- /size --> gzipped), fast and provides routing and XHR utilities out of the box.
A modern client-side Javascript framework for building Single Page Applications. It's small (<!-- size -->8.89 KB<!-- /size --> gzipped), fast and provides routing and XHR utilities out of the box.
Mithril is used by companies like Vimeo and Nike, and open source platforms like Lichess 👍.

View file

@ -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

2
mithril.min.js vendored

File diff suppressed because one or more lines are too long