mirror of
https://github.com/moodle/moodle.git
synced 2025-01-18 22:08:20 +01:00
Jump -> go on popup menus
This commit is contained in:
parent
34b5847a1a
commit
b0542a1e20
@ -633,14 +633,14 @@ function choose_from_menu ($options, $name, $selected='', $nothing='choose', $sc
|
||||
function popup_form($common, $options, $formname, $selected='', $nothing='choose', $help='', $helptext='', $return=false, $targetwindow='self') {
|
||||
|
||||
global $CFG;
|
||||
static $jump, $choose; /// Locally cached, in case there's lots on a page
|
||||
static $go, $choose; /// Locally cached, in case there's lots on a page
|
||||
|
||||
if (empty($options)) {
|
||||
return '';
|
||||
}
|
||||
|
||||
if (!isset($jump)) {
|
||||
$jump = get_string('jump');
|
||||
if (!isset($go)) {
|
||||
$go = get_string('go');
|
||||
}
|
||||
|
||||
if ($nothing == 'choose') {
|
||||
@ -690,7 +690,7 @@ function popup_form($common, $options, $formname, $selected='', $nothing='choose
|
||||
}
|
||||
$output .= '</select>';
|
||||
$output .= '<noscript id="noscript'.$formname.'" style="display: inline;">';
|
||||
$output .= '<input type="submit" value="'.$jump.'" /></noscript>';
|
||||
$output .= '<input type="submit" value="'.$go.'" /></noscript>';
|
||||
$output .= '<script type="text/javascript">'.
|
||||
"\n<!--\n".
|
||||
'document.getElementById("noscript'.$formname.'").style.display = "none";'.
|
||||
|
Loading…
x
Reference in New Issue
Block a user