Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make posted data available to template tag. (bigskysoftware#835)
Demo code: ```html <form hx-post="/form?token=123" hx-target="#result"> <input name="name" value="John Smith" /> <select name="role"> <option selected value="admin">Admin</option> <option selected value="author">Author</option> <option selected value="guest">Guest</option> </select> <button type="submit">Submit</button> </form> <output id="result"></output> <template url="/form"> <div>${JSON.stringify(params)}</div> </template> ```
- Loading branch information