Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
synnefo
Commits
aefd1eff
Commit
aefd1eff
authored
Dec 12, 2013
by
Kostas Papadimitriou
Browse files
ui: Fix quota limit reached title in create resource buttons
parent
5c76464c
Changes
1
Hide whitespace changes
Inline
Side-by-side
snf-cyclades-app/synnefo/ui/static/snf/js/views_ext.js
View file @
aefd1eff
...
...
@@ -245,10 +245,10 @@
var
available
=
this
.
quota
.
get_available
();
if
(
available
>
0
)
{
this
.
create_button
.
removeClass
(
"
disabled
"
);
this
.
create_button
.
attr
(
"
title
"
,
this
.
quota_limit_message
||
"
Quota limit reached
"
)
this
.
create_button
.
attr
(
"
title
"
,
"
"
)
;
}
else
{
this
.
create_button
.
addClass
(
"
disabled
"
);
this
.
create_button
.
attr
(
"
title
"
,
"
"
)
;
this
.
create_button
.
attr
(
"
title
"
,
this
.
quota_limit_message
||
"
Quota limit reached
"
)
}
},
...
...
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