JSFiddle - React, Tailwind, and code Playground

by Sandeep Gupta

JavaScript

var versionHistorySession = {

	init: function () {
		
		versionHistorySession.updateSession();
        // versionHistorySession.repopulateFilter();
        
	},
    
    updateSession: function () {
        alert('hahahaha');	
        versionHistorySession.repopulateFilter();
        
    },
    repopulateFilter: function () {
        alert('hahahaha123');	
    }
};


$(document).ready(function () {
	versionHistorySession.init();
});