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
7831be8f
Commit
7831be8f
authored
Jan 04, 2018
by
Weblate
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
29386dd2
f7cf1fb7
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
67 additions
and
51 deletions
+67
-51
package-lock.json
package-lock.json
+2
-2
spec/roster.js
spec/roster.js
+59
-49
src/utils.js
src/utils.js
+6
-0
No files found.
package-lock.json
View file @
7831be8f
...
...
@@ -1009,14 +1009,14 @@
"dev"
:
true
},
"backbone.overview"
:
{
"version"
:
"git+https://github.com/jcbrand/Backbone.Overview.git#
2c37461bfa8d9e8bcf8284033d3242c57eafb52d
"
,
"version"
:
"git+https://github.com/jcbrand/Backbone.Overview.git#
16239768880044f402edbdb1843220c44204cf15
"
,
"dev"
:
true
,
"requires"
:
{
"backbone"
:
"1.3.3"
}
},
"backbone.vdomview"
:
{
"version"
:
"git+https://github.com/jcbrand/backbone.vdomview.git#
f781547e9a5ce401ac4334930d74b791168114ef
"
,
"version"
:
"git+https://github.com/jcbrand/backbone.vdomview.git#
e685de2ef5a810a87efe886b35c99ce0b3ab8f82
"
,
"dev"
:
true
,
"requires"
:
{
"backbone"
:
"1.3.3"
...
...
spec/roster.js
View file @
7831be8f
This diff is collapsed.
Click to expand it.
src/utils.js
View file @
7831be8f
...
...
@@ -605,5 +605,11 @@
return
el
.
offsetWidth
>
0
||
el
.
offsetHeight
>
0
||
el
.
getClientRects
().
length
>
0
;
};
u
.
triggerEvent
=
function
(
el
,
name
,
type
=
"
Event
"
,
bubbles
=
true
,
cancelable
=
true
)
{
const
evt
=
document
.
createEvent
(
type
);
evt
.
initEvent
(
name
,
bubbles
,
cancelable
);
el
.
dispatchEvent
(
evt
);
};
return
u
;
}));
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