Merge pull request #3801 from zhengbli/ms_master

Readd className to SVGStylable for compatibility
This commit is contained in:
Zhengbo Li 2015-07-09 17:35:35 -07:00
commit cc9fde5347

View File

@ -8715,6 +8715,7 @@ declare var SVGDescElement: {
interface SVGElement extends Element {
id: string;
className: any;
onclick: (ev: MouseEvent) => any;
ondblclick: (ev: MouseEvent) => any;
onfocusin: (ev: FocusEvent) => any;
@ -12536,6 +12537,7 @@ interface SVGLocatable {
}
interface SVGStylable {
className: any;
style: CSSStyleDeclaration;
}