Skip to content

Commit

Permalink
0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Evgeny Poberezkin committed Sep 3, 2014
1 parent 83dd496 commit fd53ee7
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
28 changes: 26 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,9 +333,33 @@ http://opensource.org/licenses/BSD-2-Clause
Changes log
-----------

###After 0.1.4###
###0.1.5###

- Added mock for XMLHTTPRequest.
- `milo.util.request`

- messaging support for jsonp and file requests.
- `whenRequestsCompleted` method to call callback when all requests are completed
(or if there are no pending requests)
- tests

- `Drop` facet

- `dragin` and `dragout` messages that only fire when mouse enters/leaves the component's element,
ignoring enter/leave of child elements (`dragenter` and `dragleave` messages are still emitted as usual).
- all messages are re-emitted on drag-drop service (`milo.util.dragDrop.service`).

- `milo.minder`

- `whenPropagationCompleted` method that calls passed callback when propagation is completed or
when there is no data propagation. Using this function is better than subscription
`milo.minder.once('propagationcompleted', callback)` because in the former case callback will always be called
and in the latter only if there is propagation happening.
- `isPropagating` method that allows to determine if data propagation is currently happening.

- Added mock for XMLHTTPRequest for testing.

- Fixed memory leaks, added `destroy` methods (`milo.destroy` and others).
Calling `milo.destroy()` will make milo unusable, only useful inside iframe that has to be disposed of.


###0.1.4###
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "milo",
"version": "0.1.4",
"version": "0.1.5",
"homepage": "https://github.com/MailOnline/milo",
"authors": [
"MOL Technical <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mol-milo",
"version": "0.1.4",
"version": "0.1.5",
"description": "Browser/nodejs reactive programming and data driven DOM manipulation with modular components.",
"main": "lib/milo.js",
"scripts": {
Expand Down

0 comments on commit fd53ee7

Please sign in to comment.