Skip to content

Commit

Permalink
fix msData
Browse files Browse the repository at this point in the history
  • Loading branch information
RubyLouvre committed Nov 24, 2014
1 parent a11d436 commit 7242c5e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion avalon.js
Original file line number Diff line number Diff line change
Expand Up @@ -2178,7 +2178,7 @@
var param = match[2] || ""
var value = attr.value
var name = attr.name
msData[name] = value
msData[name.replace(/(\-[$\w]+)/g,"")] = value
if (events[type]) {
param = type
type = "on"
Expand Down
2 changes: 1 addition & 1 deletion avalon.modern.js
Original file line number Diff line number Diff line change
Expand Up @@ -1621,7 +1621,7 @@
var param = match[2] || ""
var value = attr.value
var name = attr.name
msData[name] = value
msData[name.replace(/(\-[$\w]+)/g,"")] = value
if (events[type]) {
param = type
type = "on"
Expand Down
2 changes: 1 addition & 1 deletion examples/avalon.shim.js
Original file line number Diff line number Diff line change
Expand Up @@ -2169,7 +2169,7 @@
var param = match[2] || ""
var value = attr.value
var name = attr.name
msData[name] = value
msData[name.replace(/(\-[$\w]+)/g,"")] = value
if (events[type]) {
param = type
type = "on"
Expand Down

0 comments on commit 7242c5e

Please sign in to comment.