Merge branch 'bzr/golem' of /Users/distler/Sites/code/instiki

master
Jacques Distler 2010-02-13 22:25:17 -06:00
commit b5b7f9c146
2 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
body {
body {
background: #D8D8D8;
}
@ -410,6 +410,7 @@
#svg_editor #line_panel,
#svg_editor #image_panel,
#svg_editor #text_panel,
#svg_editor #foreignObject_panel,
#svg_editor #path_node_panel {
display: none;
}

View File

@ -772,7 +772,7 @@ function svg_edit_setup() {
}
// Elements in this array cannot be converted to a path
var no_path = $.inArray(elname, ['image', 'text', 'path', 'g', 'use']) == -1;
var no_path = $.inArray(elname, ['image', 'text', 'path', 'g', 'use', 'foreignObject']) == -1;
$('#tool_topath').toggle(no_path);
$('#tool_reorient').toggle(elname == 'path');
$('#tool_reorient').toggleClass('disabled', angle == 0);