ola3doc first release

This commit is contained in:
Bachir Soussi Chiadmi
2016-12-02 15:43:18 +01:00
commit e7653223a6
166 changed files with 35017 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
define( function() {
"use strict";
return function( elem ) {
// Support: IE <=11 only, Firefox <=30 (#15098, #14150)
// IE throws on elements created in popups
// FF meanwhile throws on frame elements through "defaultView.getComputedStyle"
var view = elem.ownerDocument.defaultView;
if ( !view || !view.opener ) {
view = window;
}
return view.getComputedStyle( elem );
};
} );