NOBUG - reduce whitespace errors a little
This commit is contained in:
+1
-1
@@ -1 +1 @@
|
||||
|
||||
|
||||
|
||||
@@ -91,7 +91,7 @@ M.editor_tinymce.filepicker = function(target_id, url, type, win) {
|
||||
} else if (type == 'image') {
|
||||
// When image button clicked.
|
||||
options = M.editor_tinymce.filepicker_options[editor_id]['image'];
|
||||
}
|
||||
}
|
||||
|
||||
options.formcallback = M.editor_tinymce.filepicker_callback;
|
||||
options.editor_target = win.document.getElementById(target_id);
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
|
||||
|
||||
|
||||
+5
-5
@@ -5,10 +5,10 @@ M.core_message.init_focus = function(Y, eid) {
|
||||
};
|
||||
|
||||
M.core_message.init_refresh_page = function(Y, delay, url) {
|
||||
var delay_callback = function() {
|
||||
document.location.replace(url);
|
||||
};
|
||||
setTimeout(delay_callback, delay);
|
||||
var delay_callback = function() {
|
||||
document.location.replace(url);
|
||||
};
|
||||
setTimeout(delay_callback, delay);
|
||||
};
|
||||
|
||||
M.core_message.combinedsearchgotfocus = function(e) {
|
||||
@@ -111,4 +111,4 @@ M.core_message.init_editsettings = function(Y) {
|
||||
}
|
||||
|
||||
editsettings.init();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,7 +14,7 @@
|
||||
<tr valign="top">
|
||||
<td align="right"><input type="checkbox" name="beepnewmessage" id="beepnewmessage" <?php echo $cbbeepnewmessage ?> /></td>
|
||||
<td colspan="2"><label for="beepnewmessage"><?php print_string('beepnewmessage', 'message') ?></label></td>
|
||||
</tr>
|
||||
</tr>
|
||||
|
||||
<tr valign="top">
|
||||
<td colspan="3" align="center"><br /><input type="submit" value="<?php print_string('savemysettings', 'message') ?>" /></td>
|
||||
|
||||
@@ -13,8 +13,8 @@ function saveNext(){
|
||||
}
|
||||
|
||||
function initNext(nextid, usserid) {
|
||||
assignment.nextid = nextid;
|
||||
assignment.userid = userid;
|
||||
assignment.nextid = nextid;
|
||||
assignment.userid = userid;
|
||||
}
|
||||
|
||||
M.mod_assignment = {};
|
||||
|
||||
@@ -89,7 +89,6 @@ foreach ($chatusers as $chatuser) {
|
||||
$min = $min < 10 ? '0'.$min : $min;
|
||||
$sec = $sec < 10 ? '0'.$sec : $sec;
|
||||
$idle = $min.':'.$sec;
|
||||
|
||||
|
||||
$row = array();
|
||||
$row[0] = $OUTPUT->user_picture($chatuser, array('courseid'=>$courseid, 'popup'=>true));
|
||||
|
||||
+1
-1
@@ -95,7 +95,7 @@ M.mod_quiz.timer = {
|
||||
update: function() {
|
||||
var Y = M.mod_quiz.timer.Y;
|
||||
var secondsleft = Math.floor((M.mod_quiz.timer.endtime - new Date().getTime())/1000);
|
||||
|
||||
|
||||
// If this is a preview and time expired, display timeleft 0 and don't renew the timer.
|
||||
if (M.mod_quiz.timer.preview && secondsleft < 0) {
|
||||
Y.one('#quiz-time-left').setContent('0:00:00');
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
Generating a tags file
|
||||
======================
|
||||
|
||||
If you need a tags file so that you can jump around Moodle code
|
||||
If you need a tags file so that you can jump around Moodle code
|
||||
easily in your editor (eg vim or emacs), you can generate one:
|
||||
|
||||
Exuberant ctags (default on Linux, can be compiled on other platforms):
|
||||
|
||||
Reference in New Issue
Block a user