Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Spot
Spot
Commits
ebf48d4f
Commit
ebf48d4f
authored
Jul 17, 2012
by
Alexandre Duret-Lutz
Browse files
* wrap/python/ajax/ltl2tgba.html: Remember killed blocks.
parent
8d2d9be3
Changes
1
Hide whitespace changes
Inline
Side-by-side
wrap/python/ajax/ltl2tgba.html
View file @
ebf48d4f
...
...
@@ -99,18 +99,18 @@
break
;
case
'
m
'
:
$
(
'
#autsimp-tabs,#run-tabs
'
).
hide
(
duration
);
$
(
'
#translator-tabs,#tester-tabs
'
).
show
(
duration
);
$
(
'
#translator-tabs,#tester-tabs
'
).
not
(
'
.killed
'
).
show
(
duration
);
break
;
case
'
a
'
:
$
(
'
#translator-tabs,#autsimp-tabs
'
).
show
(
duration
);
$
(
'
#translator-tabs,#autsimp-tabs
'
).
not
(
'
.killed
'
).
show
(
duration
);
$
(
'
#run-tabs,#tester-tabs
'
).
hide
(
duration
);
break
;
case
'
t
'
:
$
(
'
#translator-tabs,#autsimp-tabs,#tester-tabs
'
).
show
(
duration
);
$
(
'
#translator-tabs,#autsimp-tabs,#tester-tabs
'
).
not
(
'
.killed
'
).
show
(
duration
);
$
(
'
#run-tabs
'
).
hide
(
duration
);
break
;
case
'
r
'
:
$
(
'
#translator-tabs,#autsimp-tabs,#run-tabs
'
).
show
(
duration
);
$
(
'
#translator-tabs,#autsimp-tabs,#run-tabs
'
).
not
(
'
.killed
'
).
show
(
duration
);
$
(
'
#tester-tabs
'
).
hide
(
duration
);
break
;
}
...
...
@@ -272,7 +272,7 @@
$
(
'
.collapsible .head
'
).
click
(
function
(
e
)
{
if
(
e
.
ctrlKey
)
{
if
(
$
(
this
).
attr
(
'
id
'
)
!=
'
ltl-head
'
)
$
(
this
).
parent
().
hide
(
'
fast
'
);
$
(
this
).
parent
().
hide
(
'
fast
'
)
.
addClass
(
"
killed
"
)
;
}
else
{
foldToggle
(
$
(
this
));
}
...
...
Write
Preview
Supports
Markdown
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