mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-01-30 05:27:30 +00:00
24 lines
411 B
TypeScript
24 lines
411 B
TypeScript
$("#container").waitMe();
|
|
|
|
$('#container').waitMe({});
|
|
|
|
$("#container").waitMe({ effect: "none", text: "" });
|
|
|
|
$('#container').waitMe({
|
|
effect: 'bounce',
|
|
text: '',
|
|
bg: 'rgba(255, 255, 255, 0.7)',
|
|
color: "#000",
|
|
maxSize: '',
|
|
textPos: 'vertical',
|
|
fontSize: '',
|
|
source: ''
|
|
});
|
|
|
|
$('#container').waitMe()
|
|
.on('close', () => {
|
|
// code here
|
|
});
|
|
|
|
$("#container").waitMe("hide");
|