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
5efb7fbf
Commit
5efb7fbf
authored
Mar 08, 2017
by
JC Brand
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #806 Event listeners not triggered.
Functions need to be bound.
parent
f1bf5a96
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
docs/CHANGES.md
docs/CHANGES.md
+1
-0
src/converse-core.js
src/converse-core.js
+3
-3
No files found.
docs/CHANGES.md
View file @
5efb7fbf
...
...
@@ -2,6 +2,7 @@
## 3.0.1 (Unreleased)
-
#806 The
`_converse.listen`
API event listeners aren't triggered. [jcbrand]
-
#807 Error: Plugin "converse-dragresize" tried to override HeadlinesBoxView but it's not found. [jcbrand]
## 3.0.0 (2017-03-05)
...
...
src/converse-core.js
View file @
5efb7fbf
...
...
@@ -2208,9 +2208,9 @@
}
},
'
listen
'
:
{
'
once
'
:
_converse
.
once
,
'
on
'
:
_converse
.
on
,
'
not
'
:
_converse
.
off
,
'
once
'
:
_converse
.
once
.
bind
(
_converse
)
,
'
on
'
:
_converse
.
on
.
bind
(
_converse
)
,
'
not
'
:
_converse
.
off
.
bind
(
_converse
)
,
'
stanza
'
:
function
(
name
,
options
,
handler
)
{
if
(
_
.
isFunction
(
options
))
{
handler
=
options
;
...
...
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