ember.js - Handlebars data appearing outside of placeholders -


(this double-post of identical question on emberjs discuss forums.)

when handlebars template {{value}} somewhere browser doesn't reasonably expect plain text, such <table>, seems behave in unexpected ways. i've created example page source , included below. can explain going on or why happening, , whether or not behavior intentional?

to clarify, i'm not looking quick way around this. know how (as can see first text in example) i'm curious whether knows whether behaviour intentional or not - , why.

example link: http://tinyurl.com/handlebarsplaceholders

given table element should contain content in 'tr', 'th', , 'td' tags, assumption ember not able manipulate dom. try adding row , column , dropping value in.

<table>     <tr>         <td>{{value}}</td>     </tr> </table> 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -