Merge branch 'MDL-35924_m23' of https://github.com/markn86/moodle into MOODLE_23_STABLE
This commit is contained in:
+4
-1
@@ -304,7 +304,10 @@ class core_files_renderer extends plugin_renderer_base {
|
||||
private function fm_js_template_mkdir() {
|
||||
$rv = '
|
||||
<div class="filemanager fp-mkdir-dlg">
|
||||
<div class="fp-mkdir-dlg-text">'.get_string('newfoldername','repository').'<br/><input type="text" /></div>
|
||||
<div class="fp-mkdir-dlg-text">
|
||||
<label>' . get_string('newfoldername', 'repository') . '</label><br/>
|
||||
<input type="text" />
|
||||
</div>
|
||||
<button class="{!}fp-dlg-butcreate">'.get_string('makeafolder').'</button>
|
||||
<button class="{!}fp-dlg-butcancel">'.get_string('cancel').'</button>
|
||||
</div>';
|
||||
|
||||
@@ -316,6 +316,7 @@ M.form_filemanager.init = function(Y, options) {
|
||||
on('keydown', function(e){
|
||||
if (e.keyCode == 13) {Y.bind(perform_action, this)(e);}
|
||||
}, this);
|
||||
node.one('label').set('for', 'fm-newname-' + this.client_id);
|
||||
node.all('.fp-dlg-butcancel').on('click', function(e){e.preventDefault();this.mkdir_dialog.hide();}, this);
|
||||
node.all('.fp-dlg-curpath').set('id', 'fm-curpath-'+this.client_id);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user