NIHVIVO-2894: Updated account templates to enable filter by roles.

This commit is contained in:
manolobevia 2011-07-14 14:36:14 +00:00
parent 12a69094ea
commit b0ba33338e
2 changed files with 19 additions and 9 deletions

View file

@ -45,4 +45,13 @@ $(document).ready(function(){
return answer;
}
});
//Select role and filter
$('#roleFilterUri').bind('change', function () {
var url = $(this).val(); // get selected value
if (url) { // require a URL
window.location = url; // redirect
}
return false;
});
});