SkillAgentSearch skills...

Jackbox

Javascript library to display notifications

Install / Use

/learn @ja1984/Jackbox
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

Jackbox

Display timed notifications easy

Preview

Getting started is easy
<script>
    Jackbox.init();
</script>
Adding notifications is just as easy
<script>
    Jackbox.error("Oh noes, something went wrong!");

    Jackbox.warning("Yeah, you might want to check in to that");

    Jackbox.success("Woop woop!");

    Jackbox.information("I'm only here because I can");
</script>
Adding notifications with custom settings
<script>
    var notificationCustomSettings = {
		time : 20,
		classNames: ["long-notification-class"]
	};
	
	Jackbox.information('Im a custom setting message!',notificationCustomSettings);
</script>
Customization is a breeze
<script>
    var customSettings = {
        notification: {
            time : 10, //in seconds, default is set to 5
            classNames : ["custom-class-name", "another-class-name"] //Array of classes
        }
    }
    Jackbox.init(customSettings);
</script>

Browser support

The file jackbox.polyfills.js can be used for modern browser support. IE8 and less, needs to use polyfill for Array.prototype.forEach

View on GitHub
GitHub Stars17
CategoryDevelopment
Updated4y ago
Forks6

Languages

CSS

Security Score

75/100

Audited on Jan 12, 2022

No findings