We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3a93b8 commit 8e0c535Copy full SHA for 8e0c535
src/DOM/HTML/Indexed/FormMethod.purs
@@ -5,6 +5,7 @@ import Prelude
5
data FormMethod
6
= POST
7
| GET
8
+ | Dialog
9
10
derive instance eqFormMethod :: Eq FormMethod
11
derive instance ordFormMethod :: Ord FormMethod
@@ -13,3 +14,4 @@ renderFormMethod :: FormMethod -> String
13
14
renderFormMethod = case _ of
15
POST -> "post"
16
GET -> "get"
17
+ Dialog -> "dialog"
0 commit comments