initial commit
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
"use strict";
|
||||
|
||||
// Class definition
|
||||
var KTLandingPage = function () {
|
||||
// Private methods
|
||||
var initTyped = function() {
|
||||
var typed = new Typed("#kt_landing_hero_text", {
|
||||
strings: ["The Best Theme Ever", "The Most Trusted Theme", "#1 Selling Theme"],
|
||||
typeSpeed: 50
|
||||
});
|
||||
}
|
||||
|
||||
// Public methods
|
||||
return {
|
||||
init: function () {
|
||||
//initTyped();
|
||||
}
|
||||
}
|
||||
}();
|
||||
|
||||
// Webpack support
|
||||
if (typeof module !== 'undefined') {
|
||||
module.exports = KTLandingPage;
|
||||
}
|
||||
|
||||
// On document ready
|
||||
KTUtil.onDOMContentLoaded(function() {
|
||||
KTLandingPage.init();
|
||||
});
|
||||
Reference in New Issue
Block a user