function makeIds()

in inflation-explorer/shared/js/explorer.js [122:128]


	function makeIds(str) {
		var new_str = str.replace(/,/g, "_")
		new_str = new_str.replace(/\s+/g, '_')
		new_str = new_str.replace(/,/g, '_')
		new_str = new_str.replace(/\./g, '_')
		return new_str
	}