15 lines
319 B
JavaScript
15 lines
319 B
JavaScript
/**
|
|
* @Website: apollotheme.com - prestashop template provider
|
|
* @author Apollotheme <apollotheme@gmail.com>
|
|
* @copyright Apollotheme
|
|
* @description:
|
|
*/
|
|
|
|
(function( $ ) {
|
|
$.fn.elementorWaypoint = function(callback) {
|
|
if ( typeof callback === 'function' ) {
|
|
callback.call( this );
|
|
}
|
|
};
|
|
})( jQuery );
|