HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/Velosophe/carparkcannonball.cc/wwwroot/source/scripts/modules/empty-module.js
/*------------------------------------------------------------------------*/
/*  Rodesk empty module script
/*------------------------------------------------------------------------*/

var emptyModule = (function () {

    var settings;

    var defaults = {

    };

    /**
     * Calc top position of carousel navigation
     *
     */
    var _defaultFunction = function() {

     };


    /**
     * Bind reveal events
     * Close the cookie bar on click of the close button
     *
     */
    var _bindEvents = function() {


    };

    var _setup = function() {

        _bindEvents();

    };

    /**
     * Init module
    */
    var init = function(options) {

        // Setup settings.
        options = options || {};
        settings = $.extend({}, defaults, options);

        _setup();

    };

    // Return public functions
    return {
        init: init // Init this function
    };

})(jQuery); // Fully reference jQuery after this point.