Update foundation.d.ts

Updated the reveal options for Foundation Zurb 4
This commit is contained in:
Rob Angelier 2013-03-01 10:36:58 +01:00
parent 7ba60ff700
commit 784ea19d75

View File

@ -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 {