DefinitelyTyped/types/waitme/waitme-tests.ts
2017-08-24 14:26:32 +03:00

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");