JSFiddle - React, Tailwind, and code Playground
JavaScript
var versionHistorySession = {
init: function () {
versionHistorySession.updateSession();
// versionHistorySession.repopulateFilter();
},
updateSession: function () {
alert('hahahaha');
versionHistorySession.repopulateFilter();
},
repopulateFilter: function () {
alert('hahahaha123');
}
};
$(document).ready(function () {
versionHistorySession.init();
});