weso / YASHE

Yet Another ShEx Editor.
http://www.weso.es/YASHE/
MIT License
20 stars 3 forks source link

Fixed important bug on checkSyntax #85

Closed mistermboy closed 4 years ago

mistermboy commented 4 years ago

 yashe.on('change', function(yashe) {
    //Needed. Without the timeout there is a bug 
    //that forfces you to do a Space after type a token to fix it
    setTimeout(() => {
      checkSyntax(yashe);  
    }, 10);
  });