grails-events-push icon indicating copy to clipboard operation
grails-events-push copied to clipboard

browser:true not working as expected!

Open aro1976 opened this issue 11 years ago • 0 comments

When I define a given event using browser:true it doesn't accept events from the browser.

events = {    
    'savedTodo' browser:true // allows browser push on this topic
}

But when I replace browser:true with namespace: 'browser' it works. Is this the expected behavior?

events = {    
    'savedTodo' namespace: 'browser' // allows browser push on this topic
}

aro1976 avatar Jun 25 '13 16:06 aro1976