welsonjs/node_modules/modernizr/feature-detects/window/framed.js

17 lines
320 B
JavaScript

/*!
{
"name": "Framed window",
"property": "framed",
"tags": ["window"],
"builderAliases": ["window_framed"]
}
!*/
/* DOC
Tests if page is iframed.
*/
define(['Modernizr'], function(Modernizr) {
// github.com/Modernizr/Modernizr/issues/242
Modernizr.addTest('framed', window.location !== top.location);
});