mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
Update foundation.d.ts
Updated the reveal options for Foundation Zurb 4
This commit is contained in:
parent
7ba60ff700
commit
784ea19d75
23
foundation/foundation.d.ts
vendored
23
foundation/foundation.d.ts
vendored
@ -31,10 +31,33 @@ interface RevealOptions {
|
||||
animationSpeed?: number;
|
||||
closeOnBackgroundClick?: bool;
|
||||
dismissModalClass?: string;
|
||||
/**
|
||||
* The class of the modals background.
|
||||
*/
|
||||
bgClass?: string;
|
||||
open?: () => void;
|
||||
opened?: () => void;
|
||||
close?: () => void;
|
||||
closed?: () => void;
|
||||
/**
|
||||
* The modals background object.
|
||||
*/
|
||||
bg: JQuery;
|
||||
/**
|
||||
* The css property for when the modal is opened and closed.
|
||||
*/
|
||||
css: {
|
||||
open: {
|
||||
opacity?: number;
|
||||
visibility?: string;
|
||||
display: string;
|
||||
};
|
||||
close: {
|
||||
opacity: number;
|
||||
visibility: string;
|
||||
display: string;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
interface JoyrideOptions {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user