app dialog: formatting; 'not yet' -> 'lazy fox'
This commit is contained in:
parent
4cf13ab908
commit
2c9109a7a5
2 changed files with 13 additions and 11 deletions
|
@ -1,11 +1,11 @@
|
||||||
<div id="about">
|
<div id="about">
|
||||||
<p>
|
<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>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="faq">
|
<div id="faq">
|
||||||
<p>
|
<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>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div id="terms">
|
<div id="terms">
|
||||||
|
@ -15,13 +15,15 @@
|
||||||
</div>
|
</div>
|
||||||
<div id="development">
|
<div id="development">
|
||||||
<p>
|
<p>
|
||||||
The latest code is in our
|
The latest code is in our <a href="https://git.0x2620.org/openmedialibrary.git">git repository</a>.
|
||||||
<a href="https://git.0x2620.org/openmedialibrary.git">git repository</a>.
|
</p>
|
||||||
<br/>
|
<p>
|
||||||
<p>
|
For everything else, there's IRC, and our development mailing list. Your feedback is welcome.
|
||||||
For everything else, there's IRC, and our development mailing list. Your feedback is welcome.
|
</p>
|
||||||
</p>
|
<p>
|
||||||
<a href="irc://irc.freenode.net#openmedialibrary">IRC</a>: #openmedialibrary on freenode<br/>
|
IRC: <a href="irc://irc.freenode.net#openmedialibrary">#openmedialibrary</a> on freenode
|
||||||
<a href="https://mailb.org/mailman/listinfo/openmedialibrary-dev">Mailing List</a>: openmedialibrary-dev@openmedialibrary.com<br/>
|
</p>
|
||||||
|
<p>
|
||||||
|
Mailing List: <a href="https://mailb.org/mailman/listinfo/openmedialibrary-dev">openmedialibrary-dev@openmedialibrary.com</a>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -55,7 +55,7 @@ oml.ui.appDialog = function() {
|
||||||
if (id == 'contact') {
|
if (id == 'contact') {
|
||||||
$content.append(oml.ui.contactForm());
|
$content.append(oml.ui.contactForm());
|
||||||
} else {
|
} else {
|
||||||
Ox.get('/static/html/app.html', function(html) {
|
Ox.get('/static/html/app.html?foo', function(html) {
|
||||||
var $html = $('<div>').html(html),
|
var $html = $('<div>').html(html),
|
||||||
section = $html.find('#' + id).html();
|
section = $html.find('#' + id).html();
|
||||||
$content.html('<h1><b>' + title + '</b></h1>' + section);
|
$content.html('<h1><b>' + title + '</b></h1>' + section);
|
||||||
|
|
Loading…
Reference in a new issue