ciscoheat / mithril-hx

Haxe externs for Mithril (JS MVC framework)
181 stars 12 forks source link

Multiple properties in sugaertags #15

Closed RudolfVonKrugstein closed 9 years ago

RudolfVonKrugstein commented 9 years ago

Can I have multiple properties in sugertags syntax? How would I list them?

Something like this ...?

INPUT[type=password;name=password]()
ciscoheat commented 9 years ago

No problem, just add them in separate brackets:

INPUT[type=password][name=password]()

If the value is non-alphanumeric, you can use a string instead.

A[href="/some%20strange/url"]()
RudolfVonKrugstein commented 9 years ago

thx