substance / notes

Real-time collaborative notes editing.
Other
21 stars 5 forks source link

Display connection errors #63

Closed michael closed 8 years ago

michael commented 8 years ago

image

Integral commented 8 years ago

You can now use setStatus method from editNote

Pass there status. Status is object which looks like this:

var status = {
  type: 'error', //could be also warning/success/info
  message: 'my error',
  dismiss: 5 //optional, seconds until dismiss 
}
michael commented 8 years ago

:+1: