25 lines
540 B
JavaScript
25 lines
540 B
JavaScript
/**
|
|
* Javascript for controlling the landing page.
|
|
* This is the page you'll see when you visit the
|
|
* client home page without being logged in.
|
|
*/
|
|
(function(context,$) {
|
|
|
|
"use strict";
|
|
|
|
context.JK = context.JK || {};
|
|
|
|
context.JK.LandingPage = function() {
|
|
var logger = context.JK.logger;
|
|
logger.debug("Landing Page TODO");
|
|
|
|
this.initialize = function() {
|
|
$('div[layout="landing"]').show();
|
|
context.JK.hideCurtain(400);
|
|
};
|
|
|
|
return this;
|
|
|
|
};
|
|
|
|
}(window,jQuery)); |