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
die_coolen_jungs
our_own_cloud_project
Commits
10eeb351
Commit
10eeb351
authored
Mar 23, 2015
by
Morris Jobke
Browse files
Merge pull request #15121 from owncloud/email-sent-unbold
unbold share email sent notification
parents
e8d12c18
fd8a134d
Changes
1
Hide whitespace changes
Inline
Side-by-side
core/js/share.js
View file @
10eeb351
...
...
@@ -1189,10 +1189,10 @@ $(document).ready(function() {
$
(
'
#email
'
).
prop
(
'
disabled
'
,
false
);
$
(
'
#emailButton
'
).
prop
(
'
disabled
'
,
false
);
if
(
result
&&
result
.
status
==
'
success
'
)
{
$
(
'
#email
'
).
css
(
'
font-weight
'
,
'
bold
'
);
$
(
'
#email
'
).
animate
({
fontWeight
:
'
normal
'
},
2000
,
function
()
{
$
(
this
).
val
(
''
);
}
).
val
(
t
(
'
core
'
,
'
Email sent
'
)
);
$
(
'
#email
'
).
css
(
'
font-weight
'
,
'
bold
'
)
.
val
(
t
(
'
core
'
,
'
Email sent
'
))
;
setTimeout
(
function
()
{
$
(
'
#email
'
).
css
(
'
font-weight
'
,
'
normal
'
).
val
(
''
);
}
,
2000
);
}
else
{
OC
.
dialogs
.
alert
(
result
.
data
.
message
,
t
(
'
core
'
,
'
Error while sharing
'
));
}
...
...
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