(
/**
* Contains the functionalities related to the roles page.
*
* @module roles
* @author Joonas Konki
* @author Anu Koskela
* @author Mikko Kuhno
* @author Henrik Paananen
* @author Atte Räty
* @license BSD 3-clause, see LICENSE for more details.
* @copyright 2015 Kepler project authors
*/
function(){
/**
* This is executed after the HTML page has been loaded.
* This is a common procedure of all of the client-side modules to
* initialise the page content.
* @memberof module:roles
*/
function doc_ready(){
$("#navRoles").addClass("active");
}
$(document).ready(doc_ready);
}());