// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

function isEnter(e){
	if (e.keyCode == 13) {
		return true
	}
	return false;
}

function trim(str) { 
	return str.replace(/^\s+|\s+$/g, ''); 
}
