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.