Elgg  Version 1.9
Functions | Variables
ui.river.js File Reference

Go to the source code of this file.

Functions

elgg provide ('elgg.ui.river')
 
elgg register_hook_handler ('init', 'system', elgg.ui.river.init)
 

Variables

elgg ui river init
 

Function Documentation

elgg provide ( 'elgg.ui.river )
elgg register_hook_handler ( 'init ,
'system ,
elgg.ui.river.  init 
)

Variable Documentation

elgg ui river init
Initial value:
= function() {
$('#elgg-river-selector').change(function() {
var url = window.location.href;
if (window.location.search.length) {
url = url.substring(0, url.indexOf('?'));
}
url += '?' + $(this).val();
elgg.forward(url);
});
}
elgg
Definition: install.js:23
$CONFIG url
The full URL where Elgg is installed.
Definition: config.php:94

Definition at line 3 of file ui.river.js.