Commit 92c03f459fc0b8b7a3f6a7956404ccdebcefe887
1 parent
72f85895
Exists in
master
and in
6 other branches
Correção no ícone de fechar janela no editor de mapfiles com i3Geo. As janelas a…
…bertas com core.js não estavam incluindo o ícone
Showing
1 changed file
with
13 additions
and
1 deletions
Show diff stats
admin/js/core.js
... | ... | @@ -374,7 +374,19 @@ function core_montaEditor(funcaoOK,w,h,funcaoClose,titulo,modal,bsalva,bcancela) |
374 | 374 | ); |
375 | 375 | } |
376 | 376 | } |
377 | - YAHOO.admin.container.panelEditor = new YAHOO.widget.Panel("janela_editor", { fixedcenter:"contained",close:true,width:w, overflow:"auto",modal: modal,visible:false,constraintoviewport:true } ); | |
377 | + YAHOO.admin.container.panelEditor = new YAHOO.widget.Panel( | |
378 | + "janela_editor", | |
379 | + { | |
380 | + fixedcenter:"contained", | |
381 | + close:true, | |
382 | + width:w, | |
383 | + overflow:"auto", | |
384 | + modal: modal, | |
385 | + visible:false, | |
386 | + constraintoviewport:true, | |
387 | + strings: {close: "<span class='material-icons'>cancel</span>"} | |
388 | + } | |
389 | + ); | |
378 | 390 | YAHOO.admin.container.panelEditor.render(); |
379 | 391 | } |
380 | 392 | else | ... | ... |