Merge remote-tracking branch 'origin/master'

This commit is contained in:
Pootle server 2011-11-27 10:40:14 +01:00
commit 2dcac49363
3 changed files with 34 additions and 3 deletions

View File

@ -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()

View File

@ -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
*/

View File

@ -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
*/