projects
/
pompage.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
ADD Ajout d'un panneau d'option (non terminé)
[pompage.git]
/
xpi
/
chrome
/
content
/
settings.js
1
function
doAnnuler
(
event
)
2
{
3
}
4
5
function
doOK
(
event
)
6
{
7
}
8
9
10
11
// Les événements
12
$(
hbox
>
button
[@
label
=
Annuler
]).
addEventListener
(
'command'
,
doAnnuler
,
true
);
13
$(
hbox
>
button
[@
label
=
OK
]).
addEventListener
(
'command'
,
doOK
,
true
);