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
// See link and replace following settings | |
const title = 'Lucky idea'; | |
const icon = 'bp3-icon bp3-icon-clean icon'; |
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
// Moved to https://github.com/oschmid/roam-plugins/blob/master/random-page-plugin.js |
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
var randomButton = document.querySelector('#random-button'); | |
if (randomButton != null) { | |
randomButton.parentNode.removeChild(randomButton); | |
} | |
function getEventHandlers(element) { | |
for (var prop in leftMenu) { | |
if (prop.includes('reactEventHandlers')) { | |
return element[prop]; | |
} | |
} |
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
public class Task { | |
public Status status; | |
public String description; | |
public Optional<Integer> priority; | |
public Visibility visibility; | |
} | |
public enum Status { | |
TODO, IN_PROGRESS, UNDER_REVIEW, BLOCKED, DONE | |
} |