1
0
Fork 0

Merge branch 'devel' of github.com:triAGENS/ArangoDB into devel

This commit is contained in:
Michael Hackstein 2013-11-08 10:31:49 +01:00
commit f89a6f7690
4 changed files with 0 additions and 75 deletions

View File

@ -17,7 +17,6 @@ $(document).ready(function() {
"shell" : "shell",
"query" : "query",
"logs" : "logs",
"about" : "about",
"api" : "api",
"databases" : "databases",
"application/installed/:key" : "applicationEdit",
@ -214,14 +213,6 @@ $(document).ready(function() {
}
},
about: function() {
if (!this.aboutView) {
this.aboutView = new window.aboutView();
}
this.aboutView.render();
this.naviView.selectMenuItem('about-menu');
},
logs: function() {
if (! this.logsAllowed()) {
this.navigate('', { trigger: true });

View File

@ -1,48 +0,0 @@
<ul class="thumbnails2" id="aboutHeader">
<div id="transparentHeader">
<a class="arangoHeader">About</a>
</div>
</ul>
<div id="aboutDiv">
<div>
<div class="row">
<div class="span12">
<img class="about-icon" src="img/download.png" width="50">
<h3>Download the source code</h3>
<a href="https://github.com/triAGENS/ArangoDB">ArangoDB on GitHub</a>
</div>
</div>
<div class="row">
<div class="span12">
<img class="about-icon" src="img/discuss.png" width="50" style="float: left;">
<h3>Comments and questions</h3>
<a href="https://groups.google.com/group/arangodb">ArangoDB Google Group</a>
</div>
</div>
<div class="row">
<div class="span12">
<img class="about-icon" src="img/twitter.png" width="50" style="float: left;">
<h3>Follow us on Twitter</h3>
<p><a href="https://twitter.com/arangodb">@arangodb</a></p>
</div>
</div>
<div class="row">
<div class="span12">
<img class="about-icon" src="img/blog.png" width="50" style="float: left;">
<h3>Check out our blog</h3>
<p><a href="https://arangodb.org">https://arangodb.org</a></p>
</div>
</div>
</div>
</div>

View File

@ -51,7 +51,6 @@
<option value="#shell">JS Shell</option>
<option value="#logs">Logs</option>
<option value="#api">Api</option>
<option value="#about">About</option>
</select>

View File

@ -1,17 +0,0 @@
/*jslint indent: 2, nomen: true, maxlen: 100, sloppy: true, vars: true, white: true, plusplus: true */
/*global require, exports, Backbone, EJS, $*/
var aboutView = Backbone.View.extend({
el: '#content',
init: function () {
},
template: new EJS({url: 'js/templates/aboutView.ejs'}),
render: function() {
$(this.el).html(this.template.text);
$.gritter.removeAll();
return this;
}
});