Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
officejs
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
officejs
Commits
9288d963
Commit
9288d963
authored
May 30, 2012
by
Tristan Cavelier
Committed by
Sebastien Robin
Jun 07, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding 'About' and 'Contact' section to OfficeJS.
parent
543c6f42
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
7 deletions
+46
-7
OfficeJS/component/about.html
OfficeJS/component/about.html
+16
-0
OfficeJS/component/contact.html
OfficeJS/component/contact.html
+12
-0
OfficeJS/component/top_nav_bar.html
OfficeJS/component/top_nav_bar.html
+8
-3
OfficeJS/js/officejs.js
OfficeJS/js/officejs.js
+10
-4
No files found.
OfficeJS/component/about.html
0 → 100644
View file @
9288d963
<h2>
About OfficeJS
</h2>
<p>
OfficeJS is designed by the ERP5 company Nexedi.
</p>
<h3>
License
</h3>
<p>
Under the ? license.
</p>
<h3>
See
</h3>
<ul>
<li><a
href=
"http://jquery.com/"
>
jQuery
</a></li>
<li><a
href=
"http://twitter.github.com/bootstrap/"
>
Bootstrap
</a></li>
<li><a
href=
"https://code.google.com/p/svg-edit/"
>
svg-edit
</a></li>
<li><a
href=
"http://elrte.org/"
>
elRTE
</a></li>
<li><a
href=
"https://github.com/mleibman/SlickGrid/wiki"
>
SlickGrid
</a></li>
</ul>
OfficeJS/component/contact.html
0 → 100644
View file @
9288d963
<h2>
Contact us
</h2>
<h3>
E-mail
</h3>
<p>
Jean-Paul Smets
<
<a>
jp@nexedi.com
</a>
>
</p>
<h3>
Address
</h3>
<p>
Nexedi
<br
/>
270, Boulevard Georges Clemenceau
<br
/>
59700 MARCQ EN BAROEUL
<br
/>
FRANCE
</p>
OfficeJS/component/top_nav_bar.html
View file @
9288d963
...
...
@@ -42,9 +42,14 @@
<div
class=
"container-fluid"
>
<ul
class=
"nav"
>
<li><h1>
OfficeJS
</h1></li>
<li><a
href=
"#"
>
Nav
</a></li>
<li><a
href=
"#/about"
>
About
</a></li>
<li><a
href=
"#/contact"
>
Contact
</a></li>
<li><a
href=
"#/about"
onclick=
"javascript:
OfficeJS.open({app:'about'});
return false;"
>
About
</a></li>
<li><a
href=
"#/contact"
onclick=
"javascript:
OfficeJS.open({app:'contact'});
return false;"
>
Contact
</a></li>
</ul>
</div>
</div>
...
...
OfficeJS/js/officejs.js
View file @
9288d963
...
...
@@ -20,10 +20,6 @@
var
that
=
{},
priv
=
{};
// Attributes //
priv
.
preference_object
=
{
default_app
:
'
login
'
,
login
:
'
login
'
,
topnavbar
:
'
topnavbar
'
,
leftnavbar
:
'
leftnavbar
'
,
documentLister
:
'
slickgrid
'
,
editpreferences
:
'
simplepreferenceeditor
'
,
textEditor
:
'
elrte
'
,
...
...
@@ -65,6 +61,16 @@
return
JSON
.
stringify
(
tmp
);
}
},
about
:
{
type
:
'
viewer
'
,
path
:
'
component/about.html
'
,
gadgetid
:
'
page-content
'
},
contact
:
{
type
:
'
viewer
'
,
path
:
'
component/contact.html
'
,
gadgetid
:
'
page-content
'
},
simplepreferenceeditor
:
{
// NOTE
type
:
'
editor
'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment