mirror of
https://github.com/koel/koel
synced 2024-11-10 14:44:13 +00:00
Docblock
This commit is contained in:
parent
56045ef06c
commit
32294311c1
2 changed files with 6 additions and 1 deletions
|
@ -59,6 +59,7 @@ export function loadArtistView(artist) {
|
|||
|
||||
/**
|
||||
* Show the overlay.
|
||||
*
|
||||
* @param {String} message
|
||||
* @param {String} type
|
||||
* @param {Boolean} dismissable
|
||||
|
@ -69,7 +70,6 @@ export function showOverlay(message = 'Just a little patience…', type = 'loadi
|
|||
|
||||
/**
|
||||
* Hide the overlay.
|
||||
* @return {[type]} [description]
|
||||
*/
|
||||
export function hideOverlay() {
|
||||
event.emit('overlay:hide');
|
||||
|
|
|
@ -40,6 +40,11 @@ export function isClipboardSupported() {
|
|||
return 'execCommand' in document;
|
||||
};
|
||||
|
||||
/**
|
||||
* A simple event bus.
|
||||
*
|
||||
* @type {Object}
|
||||
*/
|
||||
const event = {
|
||||
bus: null,
|
||||
|
||||
|
|
Loading…
Reference in a new issue