forked from platypush/platypush
Removed old assistant google web plugin
This commit is contained in:
parent
bb4cc80262
commit
4bfd6baab2
1 changed files with 0 additions and 45 deletions
|
@ -1,45 +0,0 @@
|
|||
$(document).ready(function() {
|
||||
var onEvent = function(event) {
|
||||
switch (event.args.type) {
|
||||
case 'platypush.message.event.assistant.ConversationStartEvent':
|
||||
createNotification({
|
||||
'text': 'Assistant listening',
|
||||
'icon': 'microphone',
|
||||
});
|
||||
|
||||
break;
|
||||
|
||||
case 'platypush.message.event.assistant.SpeechRecognizedEvent':
|
||||
createNotification({
|
||||
'title': 'Speech recognized',
|
||||
'text': event.args.phrase,
|
||||
'icon': 'microphone',
|
||||
});
|
||||
|
||||
break;
|
||||
|
||||
case 'platypush.message.event.assistant.ResponseEvent':
|
||||
createNotification({
|
||||
'title': 'Assistant response',
|
||||
'text': event.args.response_text,
|
||||
'icon': 'volume-up',
|
||||
});
|
||||
|
||||
break;
|
||||
|
||||
case 'platypush.message.event.assistant.ConversationEndEvent':
|
||||
break;
|
||||
}
|
||||
};
|
||||
|
||||
var initEvents = function() {
|
||||
window.registerEventListener(onEvent);
|
||||
};
|
||||
|
||||
var init = function() {
|
||||
initEvents();
|
||||
};
|
||||
|
||||
init();
|
||||
});
|
||||
|
Loading…
Reference in a new issue