fix formatting in docs

This commit is contained in:
Leo Horie 2014-09-27 21:01:00 -04:00
parent 30879a1d78
commit b559118832
27 changed files with 248 additions and 116 deletions

View file

@ -15,7 +15,7 @@
- gracefully degrade on IE exceptions when setting invalid values
- fixes for Typescript definition file
- fixed bug in keys algorithm when mixing keyed and unkeyed elements [#246](https://github.com/lhorie/mithril.js/issues/246)
- added promise exception monitor and reverted promise exception handling semantics to v0.1.19 semantics (see [mithril.deferred.md#unchecked-error-handling]
- added promise exception monitor and reverted promise exception handling semantics to v0.1.19 semantics (see [docs](mithril.deferred.md#unchecked-error-handling))
- fixed redraw scheduling bug in old version of IE
- fixed incorrect diff when document is root, and html element is omitted
- fixed querystring clobbering in links w/ config:m.route [#261](https://github.com/lhorie/mithril.js/issues/261)

View file

@ -2,10 +2,10 @@
---
[How auto-redrawing-works](#how-auto-redrawing-works)
[Integrating multiple execution threads](#integrating-multiple-execution-threads)
[Integrating to legacy code](#integrating-to-legacy-code)
[Signature](#signature)
- [How auto-redrawing-works](#how-auto-redrawing-works)
- [Integrating multiple execution threads](#integrating-multiple-execution-threads)
- [Integrating to legacy code](#integrating-to-legacy-code)
- [Signature](#signature)
---

View file

@ -2,12 +2,12 @@
---
[Usage](#usage)
[Retrieving a value via the getter-setter API](#retrieving-a-value-via-the-getter-setter-api)
[Integrating to the Mithril redrawing system](#integrating-to-the-mithril-redrawing-system)
[Differences from Promises/A+](#differences-from-promises-a-)
[The exception monitor](#the-exception-monitor)
[Signature](#signature)
- [Usage](#usage)
- [Retrieving a value via the getter-setter API](#retrieving-a-value-via-the-getter-setter-api)
- [Integrating to the Mithril redrawing system](#integrating-to-the-mithril-redrawing-system)
- [Differences from Promises/A+](#differences-from-promises-a-)
- [The exception monitor](#the-exception-monitor)
- [Signature](#signature)
---

View file

@ -2,8 +2,8 @@
---
[Usage](#usage)
[Signature](#signature)
- [Usage](#usage)
- [Signature](#signature)
---

View file

@ -2,16 +2,16 @@
---
[Usage](#usage)
[Binding to data](#binding-to-data)
[Using HTML entities](#using-html-entities)
[Accessing the real DOM element](#accessing-the-real-dom-element)
[Persisting config data](#persisting-config-data)
[Destructors](#destructors)
[SVG](#svg)
[Dealing with focus](#dealing-with-focus)
[Dealing with sorting and deleting in lists](#dealing-with-sorting-and-deleting-in-lists)
[Signature](#signature)
- [Usage](#usage)
- [Binding to data](#binding-to-data)
- [Using HTML entities](#using-html-entities)
- [Accessing the real DOM element](#accessing-the-real-dom-element)
- [Persisting config data](#persisting-config-data)
- [Destructors](#destructors)
- [SVG](#svg)
- [Dealing with focus](#dealing-with-focus)
- [Dealing with sorting and deleting in lists](#dealing-with-sorting-and-deleting-in-lists)
- [Signature](#signature)
---

View file

@ -2,9 +2,9 @@
---
[Usage](#usage)
[Unloading modules](#unloading-modules)
[Signature](#signature)
- [Usage](#usage)
- [Unloading modules](#unloading-modules)
- [Signature](#signature)
---

View file

@ -2,10 +2,10 @@
---
[Usage](#usage)
[Third-party promise library support](#third-party-promise-library-support)
[Serializing getter-setters](#serializing-getter-setters)
[Signature](#signature)
- [Usage](#usage)
- [Third-party promise library support](#third-party-promise-library-support)
- [Serializing getter-setters](#serializing-getter-setters)
- [Signature](#signature)
---

View file

@ -2,10 +2,10 @@
---
[Changing redraw strategy](#changing-redraw-strategy)
[Preventing redraws on events](#preventing-redraws-on-events)
[Forcing redraw](#forcing-redraw)
[Signature](#signature)
- [Changing redraw strategy](#changing-redraw-strategy)
- [Preventing redraws on events](#preventing-redraws-on-events)
- [Forcing redraw](#forcing-redraw)
- [Signature](#signature)
---

View file

@ -2,9 +2,9 @@
---
[Usage](#usage)
[Subtree directives](#subtree directives)
[Signature](#signature)
- [Usage](#usage)
- [Subtree directives](#subtree directives)
- [Signature](#signature)
---

View file

@ -2,20 +2,20 @@
---
[Basic usage](#basic-usage)
[Processing-web-service-data](#processing-web-service-data)
[Bind redirection code](#bind-redirection-code)
[Binding errors](#binding-errors)
[Queuing operations](#queuing-operations)
[Casting the Response Data to a Class](#casting-the-response-data-to-a-class)
[Unwrapping Response Data](#unwrapping-response-data)
[Using Different Data Transfer Formats](#using-different-data-transfer-formats)
[Using variable data formats](#using-variable-data-formats)
[Extracting Metadata from the Response](#extracting-metadata-from-the-response)
[Custom request rejections](#custom-request-rejections)
[Configuring the underlying XMLHttpRequest](#configuring-the-underlying-xmlhttprequest)
[Aborting a request](#aborting-a-request)
[Signature](#signature)
- [Basic usage](#basic-usage)
- [Processing-web-service-data](#processing-web-service-data)
- [Bind redirection code](#bind-redirection-code)
- [Binding errors](#binding-errors)
- [Queuing operations](#queuing-operations)
- [Casting the Response Data to a Class](#casting-the-response-data-to-a-class)
- [Unwrapping Response Data](#unwrapping-response-data)
- [Using Different Data Transfer Formats](#using-different-data-transfer-formats)
- [Using variable data formats](#using-variable-data-formats)
- [Extracting Metadata from the Response](#extracting-metadata-from-the-response)
- [Custom request rejections](#custom-request-rejections)
- [Configuring the underlying XMLHttpRequest](#configuring-the-underlying-xmlhttprequest)
- [Aborting a request](#aborting-a-request)
- [Signature](#signature)
---

View file

@ -2,13 +2,13 @@
---
[Defining routes](#defining-routes)
[Variadic routes](#variadic-routes)
[Routes with querystrings](#routes-with-querystrings)
[Running clean up code on route change](#running-clean-up-code-on-route-change)
[Redirecting](#redirecting)
[Reading the currently active route](#reading-the-currently-active-route)
[Mode abstraction](#mode abstraction)
- [Defining routes](#defining-routes)
- [Variadic routes](#variadic-routes)
- [Routes with querystrings](#routes-with-querystrings)
- [Running clean up code on route change](#running-clean-up-code-on-route-change)
- [Redirecting](#redirecting)
- [Reading the currently active route](#reading-the-currently-active-route)
- [Mode abstraction](#mode abstraction)
---