Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Doesn't handle method definitions in javascript #39

Closed
Lordnibbler opened this issue Jun 4, 2014 · 2 comments
Closed

Doesn't handle method definitions in javascript #39

Lordnibbler opened this issue Jun 4, 2014 · 2 comments

Comments

@Lordnibbler
Copy link

Command + R doesn't show these method definitions, where SublimeText does.

$(function() {
  "use strict";

  app.ColorList = Backbone.Collection.extend({
    model: app.Color,

    /**
     * add a new color object to the Colors collection
     */
    addFromHex: function(hex, index) {
      var c = Color(hex);
      index ? this.add({color: c, at: index}) : this.add({color: c});
    }
  });
});
@izuzak
Copy link
Contributor

izuzak commented Jun 4, 2014

Thanks for the report! I believe this is a duplicate of #8, so closing this in favor of that issue.

@izuzak izuzak closed this as completed Jun 4, 2014
@Lordnibbler
Copy link
Author

Oops sry :)

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants