2017-03-09 12:51:21 +00:00
|
|
|
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
|
|
|
|
//
|
|
|
|
// This software (Documize Community Edition) is licensed under
|
|
|
|
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
//
|
|
|
|
// You can operate outside the AGPL restrictions by purchasing
|
|
|
|
// Documize Enterprise Edition and obtaining a commercial license
|
|
|
|
// by contacting <sales@documize.com>.
|
|
|
|
//
|
|
|
|
// https://documize.com
|
|
|
|
|
|
|
|
$.fn.inView = function(){
|
2017-03-10 12:12:51 +00:00
|
|
|
var win = $(window);
|
|
|
|
var obj = $(this);
|
2017-03-09 12:51:21 +00:00
|
|
|
|
|
|
|
// trap for no object
|
|
|
|
if (obj.length === 0) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-10 12:12:51 +00:00
|
|
|
var scrollPosition = win.scrollTop();
|
2017-03-09 12:51:21 +00:00
|
|
|
|
2017-03-10 12:12:51 +00:00
|
|
|
var visibleArea = win.scrollTop() + win.height();
|
2017-03-09 12:51:21 +00:00
|
|
|
|
2017-03-10 12:12:51 +00:00
|
|
|
var objPos = obj.offset().top;// + obj.outerHeight();
|
2017-03-09 12:51:21 +00:00
|
|
|
|
|
|
|
return(visibleArea >= objPos && scrollPosition <= objPos ? true : false);
|
|
|
|
};
|