File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ module.exports = function( grunt ) {
8989 console . log ( 'listRepoIssues: Yeah, it worked...' + textStatus + ' - ' ) ;
9090
9191 $ . each ( data , function ( index , value ) {
92- issues . push ( "* " + ( ( value . labels [ 0 ] !== undefined ) ? value . labels [ 0 ] . name + ": " : "" ) + value . title + " [# " + value . number + "](" + value . html_url + ")" ) ;
92+ issues . push ( "* " + ( ( value . labels [ 0 ] !== undefined && / : / . test ( value . title ) ) ? value . labels [ 0 ] . name + ": " : "" ) + value . title + " [# " + value . number + "](" + value . html_url + ")" ) ;
9393 } ) ;
9494
9595 parseHttpHeaders ( jqXHR ) ;
@@ -149,9 +149,9 @@ module.exports = function( grunt ) {
149149
150150 linkNextPage = "https://api.github.com/repos/jquery/jquery-mobile/issues?state=closed&per_page=100&milestone=" + 20 ;
151151 changelog += "\n###Closed Issues\n" ;
152- recurse ( ) ;
152+ // recurse();
153153 linkNextPage = "https://api.github.com/repos/jquery/jquery-mobile/issues?state=closed&per_page=100&since=2013-02-20T00:00:01Z&milestone=none" ;
154- recurse ( ) ;
154+ // recurse();
155155
156156 }
157157
You can’t perform that action at this time.
0 commit comments