I have the backbone.js view below:
class MyApplication.Views.Cake extends Backbone.View
tagName: 'li'
className: 'cake'
and the attempted subclass
class MyApplication.Views.AwesomeCake extends MyApplication.Views.Cake
However in the javascript console the following error is thrown on the subclass:
Uncaught TypeError: Cannot read property 'prototype' of undefined