HOME


Mini Shell 1.0
Login Page - Texind
png


Welcome to Texind Admin Portal! 馃憢

DIR: /home/u358511784/domains/admin.texindcolors.com/public_html/public/js/
Upload File :
Current File : /home/u358511784/domains/admin.texindcolors.com/public_html/public/js/sidebar-custom.js
$(function() {
  'use strict';
  
  // Date& time
	var datetime = null,
	datetime2 = null,
    date = null;
    var update = function () {
        date = moment(new Date())
        datetime.html(date.format('HH:mm'));
        datetime2.html(date.format('dddd, MMMM Do YYYY'));
    };

    $(document).ready(function(){
        datetime = $('.time h1');
        datetime2 = $('.time p');
        update();
        setInterval(update, 1000);
    });
	

});