Improve the way we init the view. The data loader send a "loaded" event, hooked by the scene.py and initializing the backbone.history and the view.
We don't use redraw_active in save-once and full-json, because it was making the view initialization dependent of these file which are externals.
Small fix to hide the "set saved view" button when there is only one view.
<h2>
<span class="Rk-CloseX">×</span>
<% if (options.show_edge_tooltip_color) { %>
<span class="Rk-UserColor" style="background: <%- edge.color %>;"></span>
<% } %>
<span class="Rk-Display-Title">
<% if (edge.uri) { %>
<a href="<%-edge.uri%>" target="_blank">
<% } %>
<%-edge.title%>
<% if (edge.uri) { %> </a> <% } %>
</span>
</h2>
<% if (options.show_edge_tooltip_uri && edge.uri) { %>
<p class="Rk-Display-URI">
<a href="<%-edge.uri%>" target="_blank"><%- edge.short_uri %></a>
</p>
<% } %>
<p><%=edge.description%></p>
<% if (options.show_edge_tooltip_nodes) { %>
<p>
<span class="Rk-Editor-Label"><%-renkan.translate("From:")%></span>
<span class="Rk-UserColor" style="background: <%- edge.from_color %>;"></span>
<%- shortenText(edge.from_title, 25) %>
</p>
<p>
<span class="Rk-Editor-Label"><%-renkan.translate("To:")%></span>
<span class="Rk-UserColor" style="background: <%- edge.to_color %>;"></span>
<%- shortenText(edge.to_title, 25) %>
</p>
<% } %>
<% if (options.show_edge_tooltip_creator && edge.has_creator) { %>
<p>
<span class="Rk-Editor-Label"><%-renkan.translate("Created by:")%></span>
<span class="Rk-UserColor" style="background: <%- edge.created_by_color %>;"></span>
<%- shortenText(edge.created_by_title, 25) %>
</p>
<% } %>