Skip to content

Commit

Permalink
Version 1.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
luigifab committed Nov 11, 2010
1 parent 8b2d1f5 commit 5daa102
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ For more information, go to https://www.luigifab.fr/apijs (IPv6 is required, it'

This repository is a releases mirror. To install it, please read the documentation.

- Current version: 1.2.0 (24/10/2010) (archive regenerated on 02/07/2021)
- Current version: 1.2.1 (11/11/2010) (archive regenerated on 02/07/2021)
- Client compatibility: Firefox 36+, Chrome 32+, Opera 19+, Edge 16+, Safari 9+
- Translations: English (en), French (fr-FR/fr-CA), German (de), Italian (it), Portuguese (pt-PT/pt-BR), Spanish (es)
- Other translations: Czech (cs), Dutch (nl), Japanese (ja), Polish (pl), Slovak (sk)
Expand Down
10 changes: 6 additions & 4 deletions src/javascripts/main.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Created J/03/12/2009
* Updated D/24/10/2010
* Updated J/11/11/2010
* Version 25
*
* Copyright 2008-2010 | Fabrice Creuzot (luigifab) <code~luigifab~info>
Expand Down Expand Up @@ -78,10 +78,12 @@ else {
// » Charge les modules disponibles
function start() {

for (var i = 0, tag = document.getElementsByClassName('popup'); i < tag.length; i++) {
if (config.navigator)
for (var tag = document.getElementsByTagName('a'), size = tag.length, i = 0; i < size; i++) {

if (config.navigator && tag[i].hasAttribute('class') && (tag[i].getAttribute('class').indexOf('popup') > -1))
tag[i].addEventListener('click', openTab, false);
else

else if (tag[i].className.indexOf('popup') > -1)
tag[i].setAttribute('onclick', 'window.open(this.href); return false;');
}

Expand Down
10 changes: 6 additions & 4 deletions src/styles/dialogue.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* Created V/08/05/2009
* Updated J/07/10/2010
* Updated J/11/11/2010
* Version 14
*
* Copyright 2008-2010 | Fabrice Creuzot (luigifab) <code~luigifab~info>
Expand All @@ -17,7 +17,7 @@
* GNU General Public License (GPL) for more details.
*/

/* ################################################## Conteneurs thème 1 ### */
/* ################################################ Conteneurs (thème 1) ### */
#dialogue, div.dialogue {
position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; z-index:900;
color:black; background-color:black; background-color:rgba(0, 0, 0, 0.75);
Expand All @@ -40,7 +40,7 @@
#box.upload, #box.errorupload, #box.progress { min-height:12em; }


/* ################################################## Conteneurs thème 2 ### **
/* ################################################ Conteneurs (thème 2) ### **
#dialogue, div.dialogue {
position:fixed; top:0; left:0; bottom:0; right:0; width:100%; height:100%; z-index:900;
color:black; background:#DDD url("../images/dialogue/background.png") no-repeat;
Expand Down Expand Up @@ -76,7 +76,7 @@

/* ############################################################### Texte ### */
#box h1 {
margin:0.15em 0 0.8em; padding-left:41px; line-height:32px;
margin:0.15em 0 0.7em; padding-left:41px; line-height:32px;
font-size:1.6em; font-weight:bold; color:black;
background-repeat:no-repeat; background-position:center left;
}
Expand All @@ -97,6 +97,8 @@
#box dt { margin-bottom:0.5em; }
#box dd { overflow:hidden; }

#box ul { margin:-0.4em auto 1em; }


/* ################################################# Boutons de contrôle ### */
#box div.control { position:absolute; bottom:0.6em; right:0.7em; }
Expand Down
4 changes: 2 additions & 2 deletions src/zip/apijs-screen.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/zip/apijs.min.js

Large diffs are not rendered by default.

0 comments on commit 5daa102

Please sign in to comment.