mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
More features.
This commit is contained in:
parent
ce52e078b5
commit
cb7b3a2660
@ -33,11 +33,12 @@ core.Point = new Class({
|
||||
|
||||
clone : function() {
|
||||
return new core.Point(this.x, this.y);
|
||||
},
|
||||
}
|
||||
|
||||
fromString :
|
||||
function(point) {
|
||||
var values = point.split(',');
|
||||
return new core.Point(values[0], values[1]);
|
||||
}
|
||||
});
|
||||
|
||||
core.Point.fromString = function(point) {
|
||||
var values = point.split(',');
|
||||
return new core.Point(values[0], values[1]);
|
||||
|
||||
};
|
@ -78,10 +78,5 @@ mindplot.commands.DragTopicCommand = new Class({
|
||||
|
||||
undoExecute: function(commandContext) {
|
||||
this.execute(commandContext);
|
||||
var selectedRelationships = commandContext.filterSelectedRelations();
|
||||
selectedRelationships.forEach(function(relationshipLine) {
|
||||
relationshipLine.redraw();
|
||||
});
|
||||
|
||||
}
|
||||
});
|
@ -6,10 +6,13 @@
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>Embedding a map in a Page</h1>
|
||||
<iframe style="width:600px;height:400px;border: 1px solid black"
|
||||
src="http://localhost:8080/wise-webapp/c/embeddedView.htm?mapId=1">
|
||||
</iframe>
|
||||
<div style="text-align: center;width: 100%;font-family: arial">
|
||||
<h1>Embedding a map in a page</h1>
|
||||
|
||||
<iframe style="width:600px;height:400px;border: 1px solid black"
|
||||
src="http://localhost:8080/wise-webapp/c/embeddedView.htm?mapId=1">
|
||||
</iframe>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 4.4 KiB After Width: | Height: | Size: 843 B |
@ -31,7 +31,7 @@
|
||||
<tr>
|
||||
<td> </td>
|
||||
<td>
|
||||
<input type="submit" value="<spring:message code="SUBMIT"/>" class="btn-primary">
|
||||
<input type="submit" value="Accept" class="btn-primary">
|
||||
<c:choose>
|
||||
<c:when test="${!errorView}">
|
||||
<input type="button" value="<spring:message code="CANCEL"/>" class="btn-secondary"
|
||||
|
BIN
wise-webapp/src/main/webapp/nicons/rebota.gif
Normal file
BIN
wise-webapp/src/main/webapp/nicons/rebota.gif
Normal file
Binary file not shown.
After Width: | Height: | Size: 213 KiB |
Loading…
Reference in New Issue
Block a user