alecpl
2010-07-24 2fc4596587ce943026187037c223d126e750780f
- Allow commands with mutiple - (#1486851)


1 files modified
2 ■■■ changed files
program/js/app.js 2 ●●● patch | view | raw | blame | history
program/js/app.js
@@ -977,7 +977,7 @@
      // unified command call (command name == function name)
      default:
        var func = command.replace('-', '_');
        var func = command.replace(/-/g, '_');
        if (this[func] && typeof this[func] == 'function')
          this[func](props);
        break;