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
c343d47c
Commit
c343d47c
authored
Jul 19, 2011
by
François Billioud
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change the name of files (use timestamps instead of complete date)
parent
12e1a7fe
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
6 deletions
+4
-6
UNGProject/js/theme.js
UNGProject/js/theme.js
+1
-1
UNGProject/js/tools.js
UNGProject/js/tools.js
+2
-2
UNGProject/ung.html
UNGProject/ung.html
+1
-3
No files found.
UNGProject/js/theme.js
View file @
c343d47c
...
@@ -406,7 +406,7 @@ JSONDocument.prototype.load({//add methods thanks to the UngObject.load method
...
@@ -406,7 +406,7 @@ JSONDocument.prototype.load({//add methods thanks to the UngObject.load method
//dates
//dates
getCreation
:
function
()
{
return
this
.
creation
;},
getCreation
:
function
()
{
return
this
.
creation
;},
getLastModification
:
function
()
{
return
this
.
lastModification
;},
getLastModification
:
function
()
{
return
this
.
lastModification
.
toUTCString
()
;},
setLastModification
:
function
(
date
)
{
this
.
lastModification
=
date
;},
setLastModification
:
function
(
date
)
{
this
.
lastModification
=
date
;},
//state
//state
...
...
UNGProject/js/tools.js
View file @
c343d47c
...
@@ -208,7 +208,7 @@ tryUntilSucceed = function(func) {
...
@@ -208,7 +208,7 @@ tryUntilSucceed = function(func) {
* could be developed to implement more beautiful resizments
* could be developed to implement more beautiful resizments
*/
*/
var
resize
=
function
()
{
var
resize
=
function
()
{
$
(
"
div.main-right
"
).
width
(
$
(
window
).
width
()
-
$
(
"
div.main-left
"
).
width
());
return
$
(
"
div.main-right
"
).
width
(
$
(
window
).
width
()
-
$
(
"
div.main-left
"
).
width
());
}
}
/**
/**
...
@@ -222,7 +222,7 @@ errorMessage = function(message,object) {
...
@@ -222,7 +222,7 @@ errorMessage = function(message,object) {
/**
/**
* returns the current date
* returns the current date
*/
*/
currentTime
=
function
()
{
return
(
new
Date
()).
toUTCString
();}
currentTime
=
function
()
{
return
Date
.
now
();}
/**
/**
* Paste a toolkit at the mouse position
* Paste a toolkit at the mouse position
...
...
UNGProject/ung.html
View file @
c343d47c
...
@@ -47,10 +47,8 @@
...
@@ -47,10 +47,8 @@
getDocumentList
().
resetSelectionList
();
getDocumentList
().
resetSelectionList
();
getDocumentList
().
updateDisplayInformation
();
getDocumentList
().
updateDisplayInformation
();
getDocumentList
().
display
();
getDocumentList
().
display
();
resize
();}
resize
();}
//hack for a bug with firefox
);
);
resize
();
}
}
$
(
window
).
resize
(
resize
);
$
(
window
).
resize
(
resize
);
$
(
document
).
ready
(
init
);
$
(
document
).
ready
(
init
);
...
...
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