update help

This commit is contained in:
rolux 2013-03-05 11:13:01 +00:00
parent 8fd0963ad9
commit f871be3901
5 changed files with 24 additions and 18 deletions

View file

@ -1,9 +1,11 @@
<div id="help"> <div id="help">
<p>To learn more about the various features of {site.name}, just select a topic on the left.</p> <p>To learn more about the various features of <b>{site.name}</b>, just select a topic on the left.</p>
<p>(Please note that this help section is a work in progress.)</p> <p>Please note that this help section is a work in progress.</p>
<p>For more information about <b>pan.do/ra</b>, the software behind this website, visit <a href="https://pan.do/ra" target="_blank">pan.do/ra</a>.</p>
<a href="https://pan.do/ra" target="_blank"><img src="/static/jpg/help.help.jpg"></a>
</div> </div>
<div id="accounts"> <div id="accounts">
<p>Coming soon...</p> <p>Help is coming soon...</p>
</div> </div>
<div id="navigation"> <div id="navigation">
<p> <p>
@ -65,26 +67,28 @@
<img src="/static/jpg/help.timelines.jpg"> <img src="/static/jpg/help.timelines.jpg">
</div> </div>
<div id="clips"> <div id="clips">
<p>Some views don't show lists of {itemName.plural}, but lists of video clips &mdash; for example clips matching your query, or related to a specific location on a map. Each clip is a video player. The video will load once you've selected it, and you can then simply click to play. If you doubleclick, you'll get to the {itemName.singular} itself, and its video player will be at the very position of the clip.</p> <p>Some views don't show lists of {itemName.plural}, but lists of video clips &mdash; for example clips matching your query, or related to a specific location on a map. These clips can be sorted by various properties (like saturation, see below), and each clip is a video player. The video will load once you've selected it, and you can then simply click to play. If you doubleclick, you'll get to the {itemName.singular} itself, and its video player will be at the very position of the clip.</p>
<img src="/static/jpg/help.clips.jpg">
</div> </div>
<div id="maps"> <div id="maps">
<p>Coming soon...</p> <p>Help is coming soon...</p>
<img src="/static/jpg/help.maps.jpg"> <img src="/static/jpg/help.maps.jpg">
</div> </div>
<div id="calendars"> <div id="calendars">
<p>Coming soon...</p> <p>Help is coming soon...</p>
</div> </div>
<div id="find"> <div id="find">
<p>Coming soon...</p> <p>Help is coming soon...</p>
</div> </div>
<div id="filters"> <div id="filters">
<p>Coming soon...</p> <p>Help is coming soon...</p>
</div> </div>
<div id="lists"> <div id="lists">
<p>Coming soon...</p> <p>Help is coming soon...</p>
</div> </div>
<div id="player"> <div id="player">
<p>Coming soon...</p> <p>Help is coming soon...</p>
<img src="/static/jpg/help.player.jpg">
</div> </div>
<div id="editor"> <div id="editor">
<p>In the editor view, you can add and edit time-based annotations. Just set an in point and an out point, and pick one of the different types of annotations to add.</p> <p>In the editor view, you can add and edit time-based annotations. Just set an in point and an out point, and pick one of the different types of annotations to add.</p>
@ -130,14 +134,14 @@
</p> </p>
</div> </div>
<div id="edits"> <div id="edits">
<p>Coming soon...</p> <p>Help is coming soon...</p>
</div> </div>
<div id="texts"> <div id="texts">
<p>Coming soon...</p> <p>Help is coming soon...</p>
</div> </div>
<div id="embeds"> <div id="embeds">
<p>Coming soon...</p> <p>Help is coming soon...</p>
</div> </div>
<div id="urls"> <div id="urls">
<p>Coming soon...</p> <p>Help is coming soon...</p>
</div> </div>

BIN
static/jpg/help.clips.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 KiB

BIN
static/jpg/help.help.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 64 KiB

BIN
static/jpg/help.player.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 40 KiB

View file

@ -96,7 +96,7 @@ pandora.ui.helpDialog = function() {
{ {
id: 'title', id: 'title',
visible: true, visible: true,
width: 192 - Ox.UI.SCROLLBAR_SIZE width: 128 - Ox.UI.SCROLLBAR_SIZE
} }
], ],
items: pandora.site.help.map(function(value, index) { items: pandora.site.help.map(function(value, index) {
@ -128,7 +128,7 @@ pandora.ui.helpDialog = function() {
$panel = Ox.SplitPanel({ $panel = Ox.SplitPanel({
elements: [ elements: [
{element: $list, size: 192}, {element: $list, size: 128},
{element: $text} {element: $text}
], ],
orientation: 'horizontal' orientation: 'horizontal'
@ -143,13 +143,15 @@ pandora.ui.helpDialog = function() {
$text.html(text[id]); $text.html(text[id]);
$text.find('img') $text.find('img')
.css({ .css({
width: '100%' width: '100%',
borderRadius: '8px'
}); });
$text.find('td:first-child') $text.find('td:first-child')
.css({ .css({
height: '16px', height: '16px',
paddingRight: '8px', paddingRight: '8px',
textAlign: 'right' textAlign: 'right',
whiteSpace: 'nowrap'
}); });
return that; return that;
} }