Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
2dcac49363
@ -173,7 +173,12 @@ $(document).ready(function() {
|
||||
//Token
|
||||
var token = $("input[name='token']").val();
|
||||
|
||||
openGISEditor(value, field, type, input_name, token);
|
||||
openGISEditor();
|
||||
if (!gisEditorLoaded) {
|
||||
loadJSAndGISEditor(value, field, type, input_name, token);
|
||||
} else {
|
||||
loadGISEditor(value, field, type, input_name, token);
|
||||
}
|
||||
});
|
||||
|
||||
}, 'top.frame_content'); // end $(document).ready()
|
||||
|
||||
@ -1618,7 +1618,7 @@ a.close_gis_editor {
|
||||
display: none;
|
||||
position: fixed;
|
||||
_position: absolute; /* hack for IE */
|
||||
z-index: 101;
|
||||
z-index: 1001;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
@ -1645,6 +1645,19 @@ a.close_gis_editor {
|
||||
width: 75px;
|
||||
}
|
||||
|
||||
#popup_background {
|
||||
display: none;
|
||||
position: fixed;
|
||||
_position: absolute; /* hack for IE6 */
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background: #000;
|
||||
z-index: 1000;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/**
|
||||
* ENUM/SET editor styles
|
||||
*/
|
||||
|
||||
@ -1999,7 +1999,7 @@ a.close_gis_editor {
|
||||
display: none;
|
||||
position: fixed;
|
||||
_position: absolute; /* hack for IE */
|
||||
z-index: 101;
|
||||
z-index: 1001;
|
||||
overflow-y: auto;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
@ -2026,6 +2026,19 @@ a.close_gis_editor {
|
||||
width: 75px;
|
||||
}
|
||||
|
||||
#popup_background {
|
||||
display: none;
|
||||
position: fixed;
|
||||
_position: absolute; /* hack for IE6 */
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background: #000;
|
||||
z-index: 1000;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
/**
|
||||
* ENUM/SET editor styles
|
||||
*/
|
||||
|
||||
Loading…
Reference in New Issue
Block a user