How does one do the following where the template being stolen (temp) contains a "my-thing" tag.
When the control declared below is instantiated, the my-thing tag is not converted to a component and <my-thing></my-thing> is rendered instead.
Do the component need to be declared before steal'ing the template?
- steal("myapp/views/template.mustache", function(temp) {can.Component.extend({tag: "my-thing",template: "hello count"});return can.Control.extend({init: function() {this.element.append(temp());}})})
asdf