Manuel Dell'Elce

Results 65 comments of Manuel Dell'Elce

That would be an helpful feature, thanks for the suggestion. Right now there is another wip feature that will make the frontend (the devtools panel) to load only the objects...

@jasonLaster Thanks for taking the time to open the issue, plenty of useful information that will help throughout all the testing environment creation process. Obviously the process needs to by...

Hi, you can specify the constructor name by providing a named function for the "constructor" property: ``` javascript TestView = Backbone.View.extend({ constructor: function TestView() { Backbone.View.apply(this, arguments); } }) ```...

Yeah, maybe it's time to add some documentation about that and other features. In the meantime, take a look at the [pull request](https://github.com/Maluen/Backbone-Debugger/pull/2) that introduced the functionality, if you have...

Does it work for you on http://todomvc.com/examples/backbone/? You need to open devtools (ctrl/cmd + shift + j) and then go to the "Backbone" tab and press "Restart the application in...

If you get the screen with the models/views/collections lists then it means that Backbone has been successfully detected, thus you put it in the right place. Empty models/views/collections is another...

Hard to tell without looking at the source code, but yes it could be enough if you changed parameters or return types of Backbone core methods, i.e. if you have...

@cueedee the v0.4.0 was pretty much only HTML and CSS changes. let me know if you get the problem again. It might be that the browser needs to be restarted...

I'm not getting your extension server error and exception, but they seem related with trying to evaluate code on a page frame with a given url, this is done the...

Basically was a problem with calculating the url of a frame: chrome devtools uses the original frame url WITHOUT an eventual hash string, while the content script was using the...