Guys,
I just tried wire with ie8 and it doesn't seem to work for me with templates! IE9 is fine but IE8 is sad. The todomvc app also fails in ie8 as you need to all the poly shims.
Wirejs itself runs, I think it might just be the template plugin as it seems to thing there are more nodes in the template than there really are.
I load the spec like this:
curl(['wire!app/spec']).then(function(){
});
Which fails with this error on the console
Error: render: only one element per template is supported.
My spec is this
module: 'text!app/main/views/layout.html'
{ module: 'wire/dom/render' }
My template is just this!
I g
Gehan