下面的代码有什么问题?

I get a console error: 'Uncaught SyntaxError: Unexpected token -' What's wrong? Please, may anyone help?

  $(document).ready(function() {

    $("#widget_settings_holder").find(".tbLanguageTabs").first().tabs();

      var cmpt-br = CodeMirror.fromTextArea(document.getElementById("text_widget_text_pt-br"), {
      mode:        "htmlmixed",
      lineNumbers: true,
      tabMode:     "indent"
    });

    $(tbApp).off("tbWidget:onUpdate.textWidget").one("tbWidget:onUpdate.textWidget", function(event, $widget, $form) {

      if ($widget.attr("id").split("_")[1] != "HtmlWidget") {
          return;
      }

          cmpt-br.toTextArea();
          $form.find("textarea[name$='[text]']").each(function() {
        $(this).val(utf8_to_b64($(this).val()));
      });
    });

  });
 var cmpt-br = 

- is a subtraction operator. You can't use it in a variable name.

Javascript doesn't allow dashes in the name of variables.

So your line

var cmpt-br = CodeMirror.fromTextArea(document.getElementById("text_widget_text_pt-br"), {

Is incorrect because of the name of your variable. You can use underscore for your purpose.

var cmpt_br = CodeMirror.fromTextArea(document.getElementById("text_widget_text_pt-br"), {
var cmpt-br = 

Use an underscore, not a hyphen. JavaScript evaluates it as an expression.