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
genotoul-bioinfo
ng6
Commits
f83612a1
Commit
f83612a1
authored
May 30, 2013
by
Jerome Mariette
Browse files
No commit message
No commit message
parent
3da11014
Changes
3
Hide whitespace changes
Inline
Side-by-side
ui/nG6/pi1/analyzes/BasicAnalyse.tpl
View file @
f83612a1
...
...
@@ -103,4 +103,18 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
<div
class=
"modal-footer"
>
<button
class=
"btn"
data-dismiss=
"modal"
aria-hidden=
"true"
><i
class=
"icon-remove"
></i>
Close
</button>
</div>
</div>
{* Error only 1 raw modal *}
<div
id=
"ng6modal-1raw"
class=
"modal hide fade"
tabindex=
"-1"
role=
"dialog"
aria-labelledby=
"modalLabel-1raw"
aria-hidden=
"true"
>
<div
class=
"modal-header"
>
<button
type=
"button"
class=
"close"
data-dismiss=
"modal"
aria-hidden=
"true"
>
×
</button>
<h3>
Error
</h3>
</div>
<div
class=
"modal-body"
>
<div
class=
'tx-nG6-pi1-error'
>
Only one row should be selected to access this fonctionality.
</div>
</div>
<div
class=
"modal-footer"
>
<button
class=
"btn"
data-dismiss=
"modal"
aria-hidden=
"true"
><i
class=
"icon-remove"
></i>
Close
</button>
</div>
</div>
\ No newline at end of file
ui/nG6/pi1/analyzes/GAAS.js
View file @
f83612a1
...
...
@@ -38,7 +38,7 @@ $(function () {
$
(
"
#modal-foot-tmpl
"
).
html
(
'
<button class="btn" data-dismiss="modal" aria-hidden="true"><i class="icon-remove"></i> Close</button>
'
);
$
(
"
#ng6modal
"
).
modal
();
}
else
{
$
(
"
#ng6modal-
DTno
raw
"
).
modal
();
$
(
"
#ng6modal-
1
raw
"
).
modal
();
}
});
...
...
ui/nG6/res/js/tx_nG6_pi1_analysis.js
View file @
f83612a1
...
...
@@ -65,4 +65,13 @@ $(function () {
"
bJQueryUI
"
:
true
});
});
$
(
'
.single-selection-btn
'
).
click
(
function
()
{
if
(
$
(
"
:checked[id^=chk_sample_]
"
).
size
()
==
0
)
{
$
(
"
#ng6modal-DTnoraw
"
).
modal
();
}
else
if
(
$
(
"
:checked[id^=chk_sample_]
"
).
size
()
>
1
)
{
$
(
"
#ng6modal-1raw
"
).
modal
();
}
});
});
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