Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
converse.js
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
converse.js
Commits
e635fb4f
Commit
e635fb4f
authored
Mar 02, 2013
by
ichim-david
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Chain jQuery methods for show and render of onChatRoomMessage
parent
5ee9a678
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
converse.js
converse.js
+5
-5
No files found.
converse.js
View file @
e635fb4f
...
...
@@ -1049,15 +1049,15 @@
},
show
:
function
()
{
this
.
$el
.
css
({
'
opacity
'
:
0
});
this
.
$el
.
css
({
'
display
'
:
'
inline
'
});
this
.
$el
.
animate
({
opacity
:
'
1
'
},
200
);
this
.
$el
.
css
({
'
opacity
'
:
0
,
'
display
'
:
'
inline
'
})
.
animate
({
opacity
:
'
1
'
},
200
);
return
this
;
},
render
:
function
()
{
this
.
$el
.
attr
(
'
id
'
,
this
.
model
.
get
(
'
box_id
'
))
;
this
.
$el
.
html
(
this
.
template
(
this
.
model
.
toJSON
()));
this
.
$el
.
attr
(
'
id
'
,
this
.
model
.
get
(
'
box_id
'
))
.
html
(
this
.
template
(
this
.
model
.
toJSON
()));
return
this
;
}
});
...
...
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