Pman.Gnumeric.js
[Pman.Core] / Pman.Gnumeric.js
index 743106d..e56937a 100644 (file)
@@ -1217,19 +1217,17 @@ Roo.extend(Pman.Gnumeric, Roo.util.Observable, {
         soi.appendChild(content);
         objs.appendChild(soi);
         
-        var worksheet = this.sheet.getElementsByTagNameNS('*','Workbook')[0];
-        var godoc = this.doc.createElementNS('http://www.gnumeric.org/v10.dtd', 'GODoc');
+        var godoc = this.sheet.getElementsByTagNameNS('*','GODoc')[0];
         
         var goimage = this.doc.createElement('GOImage');
-        content.setAttribute('image-type', type ? type : 'jpeg');
-        content.setAttribute('name', name);
-        content.setAttribute('type', 'GOPixbuf');
-        content.setAttribute('width', width);
-        content.setAttribute('height', height);
-        
-        
-        content.setAttribute('size-bytes',data.length);
-        content.textContent = data;
+        goimage.setAttribute('image-type', type ? type : 'jpeg');
+        goimage.setAttribute('name', name);
+        goimage.setAttribute('type', 'GOPixbuf');
+        goimage.setAttribute('width', width);
+        goimage.setAttribute('height', height);
+        goimage.textContent = data;
+        
+        godoc.appendChild(goimage);
         
         return true;
                 //< /gnm:SheetObjectImage>