tamzinblake / js3-mode

A chimeric fork of js2-mode and js-mode
GNU General Public License v3.0
180 stars 13 forks source link

last update broke some function formatting #45

Closed tamzinblake closed 12 years ago

tamzinblake commented 12 years ago

It does:

window.onload = function () {
                  Crafty.keys.RA = Crafty.keys.RIGHT_ARROW
                  Crafty.keys.LA = Crafty.keys.LEFT_ARROW
}

Should be:

window.onload = function () {
  Crafty.keys.RA = Crafty.keys.RIGHT_ARROW
  Crafty.keys.LA = Crafty.keys.LEFT_ARROW
}