Skip to content

Commit

Permalink
Updated distribution. Lens 1.0.0 RC-1
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Aufreiter committed Dec 6, 2013
1 parent 6ccdf9e commit 36b2d5e
Show file tree
Hide file tree
Showing 5 changed files with 22,649 additions and 34 deletions.
24 changes: 15 additions & 9 deletions README.md
Expand Up @@ -35,25 +35,31 @@ The Roadmap is covered on the [project wiki](https://github.com/elifesciences/le
- [Landes Bioscience](https://www.landesbioscience.com/article/25414/full_text/#load/info/all)
- [PeerJ Lens Demo](http://peerj.github.io/lens-demo/)



### Changelog


### 1.0.0 RC1

- Added TRIM_WHITESPACE option to converter
- Updated Manual and About document
- Link all documentation from http://lens.elifesciences.org
- Deal better with author groups
- Rename Person -> Contributor (consistent with JATS)
- Added jumpmarks for the mobile version


### 0.3.0

- Support for mobile devices
- Added support for mobile devices
- No reload on route navigation (makes navigating back/forward much faster)
- Improved scrollbar mouse interaction (dragging outside the document outline is now possible)
- Covered one million rendering edgecases
- Scrolling on body for mobile, fixes numerous scrolling issues related to mobile (esp. iOS)
- Space efficiency - use full available space
- display breadcrumbs for navigating back to journal page
- display breadcrumbs for navigating back to the journal page
- Smaller font for title / authors in mobile version
- Fixed an issue related to scroll recovery on mobile
- Display publisher logo with breadcrumbs
- Rename Person -> Contributor (consistent with JATS)
- Added jumpmarks for the mobile version
- Deal better with author groups

Other work:

- Updated Manual and About document
- Moved documentation over to http://lens.elifesciences.org
2 changes: 1 addition & 1 deletion dist/index.html
Expand Up @@ -110,7 +110,7 @@
var documentURL = "data/00778/index.xml";

var app = new Lens({
document_url: decodeURIComponent(qs.url) || documentURL
document_url: qs.url ? decodeURIComponent(qs.url) : documentURL
});

$(function() {
Expand Down
16 changes: 8 additions & 8 deletions dist/lens.css
Expand Up @@ -529,19 +529,19 @@ Citations
padding-bottom: 20px;
}
/*
Person
Contributor
--------------------------------------- */

.lens-article .content-node.person .content {
/*padding: 20px;*/
.lens-article .content-node.contributor .content {

}

.lens-article .content-node.person .affiliation {
.lens-article .content-node.contributor .affiliation {
margin-top: 10px;
font-size: 17px;
}

.lens-article .content-node.person .label {
.lens-article .content-node.contributor .label {
margin-top: 10px;
color: #777;
}
Expand Down Expand Up @@ -1160,7 +1160,7 @@ span.annotation.formula_reference, span.publication_reference {
cursor: pointer;
}

.content-node .person_reference {
.content-node .contributor_reference {
padding: 2px 5px;
cursor: pointer;
}
Expand All @@ -1181,11 +1181,11 @@ span.annotation.formula_reference, span.publication_reference {
/* Hover states */
.content-node .figure_reference:hover { background-color: rgba(145, 187, 4, 0.35); }
.content-node .citation_reference:hover { background-color: rgba(11, 157, 217, 0.30); }
.content-node .person_reference:hover { background-color: rgba(0,0,0, 0.05); }
.content-node .contributor_reference:hover { background-color: rgba(0,0,0, 0.05); }

.content-node .figure_reference.active { background: rgba(145, 187, 4, 0.7); }
.content-node .citation_reference.active { background: rgba(11, 157, 217, 0.6); }
.content-node .person_reference.active { background-color: #5c6570; color: white; }
.content-node .contributor_reference.active { background-color: #5c6570; color: white; }

/* Cross Reference */
.content-node .cross_reference:hover {
Expand Down
22,625 changes: 22,617 additions & 8 deletions dist/lens.js

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions dist/lens.min.js

Large diffs are not rendered by default.

0 comments on commit 36b2d5e

Please sign in to comment.