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
34e2cfc1
Commit
34e2cfc1
authored
Apr 15, 2015
by
JC Brand
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' into roster_refactor
parents
937e1d3d
50f4d6b5
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
Gruntfile.js
Gruntfile.js
+1
-1
converse.js
converse.js
+1
-0
non_amd.html
non_amd.html
+1
-1
No files found.
Gruntfile.js
View file @
34e2cfc1
...
@@ -122,7 +122,7 @@ module.exports = function(grunt) {
...
@@ -122,7 +122,7 @@ module.exports = function(grunt) {
done
();
done
();
};
};
var
rjsext
=
(
process
.
platform
===
'
win32
'
)
?
'
.cmd
'
:
''
;
var
rjsext
=
(
process
.
platform
===
'
win32
'
)
?
'
.cmd
'
:
''
;
var
rjs
=
path
.
resolve
(
'
./node_modules/.bin/r.js
'
+
rjsext
)
;
var
rjs
=
'
"
'
+
path
.
resolve
(
'
./node_modules/.bin/r.js
'
+
rjsext
)
+
'
"
'
;
exec
(
rjs
+
'
-o src/build.js &&
'
+
exec
(
rjs
+
'
-o src/build.js &&
'
+
rjs
+
'
-o src/build.js optimize=none out=builds/converse.js &&
'
+
rjs
+
'
-o src/build.js optimize=none out=builds/converse.js &&
'
+
rjs
+
'
-o src/build-no-jquery.js &&
'
+
rjs
+
'
-o src/build-no-jquery.js &&
'
+
...
...
converse.js
View file @
34e2cfc1
...
@@ -1501,6 +1501,7 @@
...
@@ -1501,6 +1501,7 @@
},
},
updateVCard
:
function
()
{
updateVCard
:
function
()
{
if
(
!
this
.
use_vcards
)
{
return
;
}
var
jid
=
this
.
model
.
get
(
'
jid
'
),
var
jid
=
this
.
model
.
get
(
'
jid
'
),
contact
=
converse
.
roster
.
get
(
jid
);
contact
=
converse
.
roster
.
get
(
jid
);
if
((
contact
)
&&
(
!
contact
.
get
(
'
vcard_updated
'
)))
{
if
((
contact
)
&&
(
!
contact
.
get
(
'
vcard_updated
'
)))
{
...
...
non_amd.html
View file @
34e2cfc1
...
@@ -31,7 +31,7 @@
...
@@ -31,7 +31,7 @@
<!-- until here -->
<!-- until here -->
<script
type=
"text/javascript"
src=
"components/otr/build/dep/eventemitter.js"
></script>
<script
type=
"text/javascript"
src=
"components/otr/build/dep/eventemitter.js"
></script>
<script
type=
"text/javascript"
src=
"src/otr.js"
></script>
<script
type=
"text/javascript"
src=
"src/otr.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophe
/strophe.min
.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophe
js/strophe
.js"
></script>
<script
type=
"text/javascript"
src=
"src/strophe.roster.js"
></script>
<script
type=
"text/javascript"
src=
"src/strophe.roster.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophejs-plugins/vcard/strophe.vcard.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophejs-plugins/vcard/strophe.vcard.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophejs-plugins/disco/strophe.disco.js"
></script>
<script
type=
"text/javascript"
src=
"components/strophejs-plugins/disco/strophe.disco.js"
></script>
...
...
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