app dialog: formatting; 'not yet' -> 'lazy fox'

This commit is contained in:
rlx 2016-01-16 17:39:24 +05:30
parent 4cf13ab908
commit 2c9109a7a5
2 changed files with 13 additions and 11 deletions

View File

@ -1,11 +1,11 @@
<div id="about">
<p>
Open Media Library is a local web application to manage and sync your digital media collections.
The lazy brown fox jumped over the lazy black fox, but other than that not really much happened here since you last checked.
</p>
</div>
<div id="faq">
<p>
not yet
The lazy brown fox jumped over the lazy black fox, but other than that not really much happened here since you last checked.
</p>
</div>
<div id="terms">
@ -15,13 +15,15 @@
</div>
<div id="development">
<p>
The latest code is in our
<a href="https://git.0x2620.org/openmedialibrary.git">git repository</a>.
<br/>
<p>
For everything else, there's IRC, and our development mailing list. Your feedback is welcome.
</p>
<a href="irc://irc.freenode.net#openmedialibrary">IRC</a>: #openmedialibrary on freenode<br/>
<a href="https://mailb.org/mailman/listinfo/openmedialibrary-dev">Mailing List</a>: openmedialibrary-dev@openmedialibrary.com<br/>
The latest code is in our <a href="https://git.0x2620.org/openmedialibrary.git">git repository</a>.
</p>
<p>
For everything else, there's IRC, and our development mailing list. Your feedback is welcome.
</p>
<p>
IRC: <a href="irc://irc.freenode.net#openmedialibrary">#openmedialibrary</a> on freenode
</p>
<p>
Mailing List: <a href="https://mailb.org/mailman/listinfo/openmedialibrary-dev">openmedialibrary-dev@openmedialibrary.com</a>
</p>
</div>

View File

@ -55,7 +55,7 @@ oml.ui.appDialog = function() {
if (id == 'contact') {
$content.append(oml.ui.contactForm());
} else {
Ox.get('/static/html/app.html', function(html) {
Ox.get('/static/html/app.html?foo', function(html) {
var $html = $('<div>').html(html),
section = $html.find('#' + id).html();
$content.html('<h1><b>' + title + '</b></h1>' + section);