<style type="text/css"> | |
/* Show all fields in form */ | |
.ms-formtable tbody { | |
display: table-row-group !important; | |
} | |
.ms-recommendations-panel{display:none !important;} | |
</style> | |
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script> | |
<script> | |
$(document).ready(function(){ | |
var spans = document.getElementsByTagName("span"); | |
for(var i=0;i<spans.length; i++) { | |
if(spans[i].innerHTML == "new task") { | |
spans[i].innerHTML = "new request"; | |
break; | |
} | |
} | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment