[web/navigation] use add_onload instead of inline javascript href
This way our javascript code isn't thrown out by the html cleaner e.g. when
using the rql rest directive and a table view.
To make things simpler, we now always use ajax URLs for navigation,
even when we would previously have used regular links.
Closes #3501626
$(document).ready(function() {
module("module2", {
setup: function() {
$('#main').append('<select id="theselect" multiple="multiple" size="2">' +
'</select>');
}
});
test("test first selected", function() {
$('#theselect').append('<option value="foo">foo</option>' +
'<option selected="selected" value="bar">bar</option>' +
'<option value="baz">baz</option>' +
'<option selected="selecetd"value="spam">spam</option>');
var selected = firstSelected(document.getElementById("theselect"));
equals(selected.value, 'bar');
});
test("test first selected 2", function() {
$('#theselect').append('<option value="foo">foo</option>' +
'<option value="bar">bar</option>' +
'<option value="baz">baz</option>' +
'<option value="spam">spam</option>');
var selected = firstSelected(document.getElementById("theselect"));
equals(selected, null);
});
module("visibilty");
test('toggleVisibility', function() {
$('#main').append('<div id="foo"></div>');
toggleVisibility('foo');
ok($('#foo').hasClass('hidden'), 'check hidden class is set');
});
});