File tree 2 files changed +18
-11
lines changed 2 files changed +18
-11
lines changed Original file line number Diff line number Diff line change @@ -4,23 +4,29 @@ node_js:
4
4
matrix :
5
5
include :
6
6
- node_js : " 0.10"
7
- env : UNDERSCORE=1.4.4 BACKBONE=1.0 MAINRUN=false
7
+ env : UNDERSCORE=1.4.4 BACKBONE=1.0
8
8
- node_js : " 0.10"
9
- env : UNDERSCORE=1.5 BACKBONE=1.0 MAINRUN=false
9
+ env : UNDERSCORE=1.5 BACKBONE=1.0
10
10
- node_js : " 0.10"
11
- env : UNDERSCORE=1.6 BACKBONE=1.0 MAINRUN=false
11
+ env : UNDERSCORE=1.7 BACKBONE=1.1
12
12
- node_js : " 0.10"
13
- env : UNDERSCORE=1.4.4 BACKBONE=1.1.0 MAINRUN=false
13
+ env : UNDERSCORE=1.7 BACKBONE=1.0
14
14
- node_js : " 0.10"
15
- env : UNDERSCORE=1.5 BACKBONE=1.1 MAINRUN=false
15
+ env : UNDERSCORE=1.6 BACKBONE=1.0
16
+ - node_js : " 0.10"
17
+ env : UNDERSCORE=1.4.4 BACKBONE=1.1.0
18
+ - node_js : " 0.10"
19
+ env : UNDERSCORE=1.5 BACKBONE=1.1
20
+ - node_js : " 0.10"
21
+ env : LODASH=2.4 BACKBONE=1.1
22
+ - node_js : " 0.10"
23
+ env : LODASH=3.0 BACKBONE=1.1
24
+ - node_js : " 0.10"
25
+ env : LODASH=3.1 BACKBONE=1.0
16
26
env : MAINRUN=true
17
27
before_install :
18
28
- npm config set ca ""
19
29
install :
20
- - npm install -g grunt-cli
21
- - npm install
22
- # Which matrix settings -- otherwise default
23
- - if [[ $MAINRUN == false ]]; then npm install backbone@$BACKBONE; fi
24
- - if [[ $MAINRUN == false ]]; then npm install underscore@$UNDERSCORE; fi
30
+ - curl -L https://rawgit.com/marionettejs/travis-ci-setup/master/ci.sh | bash
25
31
after_success :
26
32
- if [[ $MAINRUN == true ]]; then npm run-script coverage; fi
Original file line number Diff line number Diff line change @@ -132,7 +132,8 @@ _.extend(Radio, {
132
132
133
133
// Log information about the channel and event
134
134
log : function ( channelName , eventName ) {
135
- var args = _ . rest ( arguments , 2 ) ;
135
+ if ( typeof console === 'undefined' ) { return ; }
136
+ var args = _ . drop ( arguments , 2 ) ;
136
137
console . log ( '[' + channelName + '] "' + eventName + '"' , args ) ;
137
138
} ,
138
139
You can’t perform that action at this time.
0 commit comments