PHP Classes

File: vendors/gentelella/vendors/jquery/src/css/hiddenVisibleSelectors.js

Recommend this page to a friend!
  Classes of Jorge Castro   Gentelella BladeOne   vendors/gentelella/vendors/jquery/src/css/hiddenVisibleSelectors.js   Download  
File: vendors/gentelella/vendors/jquery/src/css/hiddenVisibleSelectors.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Gentelella BladeOne
Render templates using Bootstrap for presentation
Author: By
Last change:
Date: 3 years ago
Size: 526 bytes
 

Contents

Class file image Download
define( [ "../core", "../selector" ], function( jQuery ) { jQuery.expr.filters.hidden = function( elem ) { return !jQuery.expr.filters.visible( elem ); }; jQuery.expr.filters.visible = function( elem ) { // Support: Opera <= 12.12 // Opera reports offsetWidths and offsetHeights less than zero on some elements // Use OR instead of AND as the element is not visible if either is true // See tickets #10406 and #13132 return elem.offsetWidth > 0 || elem.offsetHeight > 0 || elem.getClientRects().length > 0; }; } );