This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asyncapi: '1.0.0' | |
info: | |
title: Control Panel API | |
version: '0.1.0' | |
host: 'test.mosquitto.org' | |
baseTopic: 'smartylighting.streetlights.1.0' | |
schemes: | |
- mqtt | |
topics: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asyncapi: '1.0.0' | |
info: | |
title: Streetlights API | |
version: '0.1.0' | |
host: 'test.mosquitto.org' | |
baseTopic: 'smartylighting.streetlights.1.0' | |
schemes: | |
- mqtt | |
topics: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
asyncapi: '1.0.0' | |
info: | |
title: 'Sign up email example' | |
version: '1.0.0' | |
baseTopic: 'hitch' | |
host: 'asyncapi.hitchhq.com' | |
schemes: | |
- 'amqp' | |
- 'mqtt' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
var clickEvent = new Event('click'); | |
var delete_buttons = document.querySelectorAll('[alt="@botdylan"]+.timeline-comment-actions .js-comment-delete button[type="submit"]'); | |
for(var i=0; i < delete_buttons.length; i++) { | |
try { | |
delete_buttons[i].attributes.removeNamedItem('data-confirm'); | |
delete_buttons[i].dispatchEvent(clickEvent); | |
} catch (e) { | |
console.log('Failed to remove comment.'); | |
} |