fixed topics and synapses placing on map issue
This commit is contained in:
parent
e08c702494
commit
0a29bed856
3 changed files with 7 additions and 24 deletions
|
@ -14,7 +14,7 @@
|
|||
});
|
||||
Metamaps.Router = new Router();
|
||||
Metamaps.Router.init = function () {
|
||||
Backbone.history.start({
|
||||
/*Backbone.history.start({
|
||||
pushState: true,
|
||||
root: ''
|
||||
});
|
||||
|
@ -30,6 +30,6 @@
|
|||
evt.preventDefault();
|
||||
Backbone.history.navigate(href.attr, true);
|
||||
}
|
||||
});
|
||||
});*/
|
||||
}
|
||||
})();
|
|
@ -132,13 +132,6 @@ Metamaps.Backbone.init = function () {
|
|||
topic_id: this.isNew() ? this.cid : this.id
|
||||
});
|
||||
},
|
||||
updateMapping: function () {
|
||||
var mapping = this.getMapping();
|
||||
|
||||
if (mapping) {
|
||||
mapping.set('topic_id', this.id);
|
||||
}
|
||||
},
|
||||
createNode: function () {
|
||||
var mapping;
|
||||
var node = {
|
||||
|
@ -229,13 +222,6 @@ Metamaps.Backbone.init = function () {
|
|||
synapse_id: this.isNew() ? this.cid : this.id
|
||||
});
|
||||
},
|
||||
updateMapping: function () {
|
||||
var mapping = this.getMapping();
|
||||
|
||||
if (mapping) {
|
||||
mapping.set('synapse_id', this.id);
|
||||
}
|
||||
},
|
||||
createEdge: function () {
|
||||
var mapping, mappingID;
|
||||
var synapseID = this.isNew() ? this.cid : this.id;
|
||||
|
@ -2261,8 +2247,8 @@ Metamaps.Topic = {
|
|||
} else {
|
||||
Metamaps.Visualize.mGraph.loadJSON(newnode);
|
||||
nodeOnViz = Metamaps.Visualize.mGraph.graph.getNode(newnode.id);
|
||||
mapping.set('node', nodeOnViz);
|
||||
mapping.updateNode(); // links the topic and the mapping to the node
|
||||
topic.set('node', nodeOnViz);
|
||||
topic.updateNode(); // links the topic and the mapping to the node
|
||||
|
||||
nodeOnViz.setData("dim", 1, "start");
|
||||
nodeOnViz.setData("dim", 25, "end");
|
||||
|
@ -2283,9 +2269,8 @@ Metamaps.Topic = {
|
|||
if (topic.isNew()) {
|
||||
topic.save(null, {
|
||||
success: function (topicModel, response) {
|
||||
topicModel.updateMapping();
|
||||
if (Metamaps.Active.Map) {
|
||||
mapping.save();
|
||||
mapping.save({ topic_id: topicModel.id });
|
||||
}
|
||||
},
|
||||
error: function (model, response) {
|
||||
|
@ -2401,9 +2386,8 @@ Metamaps.Synapse = {
|
|||
if (synapse.isNew()) {
|
||||
synapse.save(null, {
|
||||
success: function (synapseModel, response) {
|
||||
synapseModel.updateMapping();
|
||||
if (Metamaps.Active.Map) {
|
||||
mapping.save();
|
||||
mapping.save({ synapse_id: synapseModel.id });
|
||||
}
|
||||
},
|
||||
error: function (model, response) {
|
||||
|
|
|
@ -101,11 +101,10 @@ $(document).ready(function() {
|
|||
<div class="mapOrder">
|
||||
<span class="displaying">Displaying:</span>
|
||||
<div class="whichMaps">
|
||||
|
||||
<a href="/maps/mappers/<%= @current.id %>" class="active">Yours</a> /
|
||||
<a href="/explore/active">Recently Active</a> /
|
||||
<a href="/explore/featured">Featured</a> /
|
||||
<a href="/explore/new">Newest First</a>
|
||||
/ <a href="/maps/mappers/<%= @current.id %>" class="active">Yours</a>
|
||||
</div>
|
||||
<div class="clearfloat"></div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue