Johan Burmester

Results 6 comments of Johan Burmester

I still have this problem...updated to 0.3.0. I do get my views from "window.__backboneAgent.appComponentsInfos['View']" but the chrome dev-tool do not show them, it only says "Waiting for inspected page loading..."

This is a very minimized code, but i still gets the error? Anything else you might need? init.js ``` javascript define(function(require) { "use strict"; var _ = require('underscore'), Backbone =...

http://localhost:8080/unikum/uppgifter/uppgifter.html?__pid=27751 and when you go down a bit in the the app: http://localhost:8080/unikum/uppgifter/uppgifter.html?__pid=27751#answers/122430/27756 We other Backbone apps and they work fine in the debugger: https://skolbanken.unikum.net/unikum/skolbanken To bad this is part...

I have even tried this, and can't get it to work.. ``` javascript define(function(require) { var Backbone = require('backbone'), Assignments = Backbone.View.extend({ render: function() { $('body').html("hello world"); } }), AssignmentCollection...

okej! I have found the problem; in our dev-env. we use this code-snippit: ``` less = { logLevel: 1 }; // make it shut up ``` and the parts that...

This is how i use it: ` < Typeahead options={schooltype.list} maxVisible={5} customListComponent={TypeaheadItem} filterOption={filterOption} displayOption={this.handleItemClick} placeholder={placeholder} / > ` ``` var TypeaheadItem = React.createClass({ handleOnClick: function (e) { this.props.displayOption(e); }, render:...