Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. var IncrementalDOM = require('incremental-dom');
  2.  
  3. IncrementalDOM.patch(document.body, function(){
  4. IncrementalDOM.elementVoid('input', null, null, 'value', 'initial');
  5. });
  6.  
  7. // Simulates typing some words in the <input>... (same results if you manually type in the input)
  8. document.querySelector('input').value = "NOT RIGHT";
  9.  
  10. IncrementalDOM.patch(document.body, function(){
  11. IncrementalDOM.elementVoid('input', null, null, 'value', new String('Hello World'));
  12. IncrementalDOM.text('should be "Hello World"');
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement