- IE window.open does not support base href tag. Fixed.

This commit is contained in:
Paulo Gustavo Veiga
2012-08-15 21:28:51 -03:00
parent dde7806b38
commit 5f441c2c20
38 changed files with 1310 additions and 1327 deletions

View File

@@ -18,15 +18,15 @@
package com.wisemapping.view;
import com.wisemapping.model.MindMap;
import com.wisemapping.model.Mindmap;
public class MindMapInfoBean {
private String title;
private String description;
private MindMap mindMap;
private Mindmap mindMap;
public MindMapInfoBean(MindMap map) {
public MindMapInfoBean(Mindmap map) {
this.title = map.getTitle();
this.description = map.getDescription();
@@ -55,7 +55,7 @@ public class MindMapInfoBean {
}
public MindMap getMindMap() {
public Mindmap getMindMap() {
if (mindMap != null) {
mindMap.setTitle(title);
mindMap.setDescription(description);