delete views that are taken care of
This commit is contained in:
parent
d765487635
commit
1a3a81508d
8 changed files with 0 additions and 42 deletions
|
@ -1,3 +0,0 @@
|
|||
Metamaps.currentSection = "explore";
|
||||
Metamaps.currentPage = "active";
|
||||
Metamaps.ServerData.Active = { @maps.to_json.html_safe };
|
|
@ -1,3 +0,0 @@
|
|||
Metamaps.currentSection = "explore";
|
||||
Metamaps.currentPage = "featured";
|
||||
Metamaps.ServerData.Featured = { @maps.to_json.html_safe };
|
|
@ -1,6 +0,0 @@
|
|||
Metamaps.currentSection = "explore";
|
||||
Metamaps.currentPage = "mapper";
|
||||
Metamaps.ServerData.Mapper = {
|
||||
models: { @maps.to_json.html_safe },
|
||||
mapperId: { params[:id] }
|
||||
};
|
|
@ -1,3 +0,0 @@
|
|||
Metamaps.currentPage = "mine";
|
||||
Metamaps.currentSection = "explore";
|
||||
Metamaps.ServerData.Mine = { @maps.to_json.html_safe };
|
|
@ -1,3 +0,0 @@
|
|||
Metamaps.currentPage = "shared";
|
||||
Metamaps.currentSection = "explore";
|
||||
Metamaps.ServerData.Shared = { @maps.to_json.html_safe };
|
|
@ -1,3 +0,0 @@
|
|||
Metamaps.currentPage = "starred";
|
||||
Metamaps.currentSection = "explore";
|
||||
Metamaps.ServerData.Starred = { @maps.to_json.html_safe };
|
|
@ -1,13 +0,0 @@
|
|||
Metamaps.currentSection = "map";
|
||||
Metamaps.currentPage = { @map.id.to_s };
|
||||
Metamaps.ServerData = Metamaps.ServerData || {}
|
||||
Metamaps.ServerData.ActiveMap = { @map.to_json.html_safe };
|
||||
Metamaps.ServerData.Mappers = { @allmappers.to_json.html_safe };
|
||||
Metamaps.ServerData.Collaborators = { @allcollaborators.to_json.html_safe };
|
||||
Metamaps.ServerData.Topics = { @alltopics.to_json(user: current_user).html_safe };
|
||||
Metamaps.ServerData.Synapses = { @allsynapses.to_json.html_safe };
|
||||
Metamaps.ServerData.Mappings = { @allmappings.to_json.html_safe };
|
||||
Metamaps.ServerData.Messages = { @allmessages.to_json.html_safe };
|
||||
Metamaps.ServerData.Stars = { @allstars.to_json.html_safe };
|
||||
Metamaps.ServerData.requests = { @allrequests.to_json.html_safe };
|
||||
Metamaps.ServerData.VisualizeType = "ForceDirected";
|
|
@ -1,8 +0,0 @@
|
|||
Metamaps.currentSection = "topic"
|
||||
Metamaps.currentPage = { @topic.id.to_s }
|
||||
Metamaps.ServerData = Metamaps.ServerData || {}
|
||||
Metamaps.ServerData.ActiveTopic = { @topic.to_json(user: current_user).html_safe }
|
||||
Metamaps.ServerData.Creators = { @allcreators.to_json.html_safe }
|
||||
Metamaps.ServerData.Topics = { @alltopics.to_json(user: current_user).html_safe }
|
||||
Metamaps.ServerData.Synapses = { @allsynapses.to_json.html_safe }
|
||||
Metamaps.ServerData.VisualizeType = "RGraph"
|
Loading…
Reference in a new issue