Skip to content

Commit

Permalink
Remove trailing commas (Bug #13596).
Browse files Browse the repository at this point in the history
  • Loading branch information
yunosh committed Sep 24, 2014
1 parent 8634279 commit c431269
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ansel/js/map.js
Expand Up @@ -93,7 +93,7 @@
} else {
this._iLayer = map.createVectorLayer({
'markerLayerTitle': opts.imageLayerText,
'styleMap': style,
'styleMap': style
});
map.map.addLayers([this._iLayer]);
map.addHighlightControl({
Expand Down Expand Up @@ -329,4 +329,4 @@
this.maps.each(function(x) { x.display(); });
}

}
}
2 changes: 1 addition & 1 deletion ansel/js/smartmobile.js
Expand Up @@ -124,7 +124,7 @@ var AnselMobile = {
thumbs = $('<ul>').addClass('thumbView');
AnselMobile.currentImages = r.imgs;
$.each(r.imgs, function(k, i) {
var img = $('<li>').addClass('anselthumb').append($('<a>').attr({'href': '#', 'image-key': k,}).append($('<img>').attr({ 'width': Ansel.conf.thumbWidth, 'height': Ansel.conf.thumbHeight, src: i.url })));
var img = $('<li>').addClass('anselthumb').append($('<a>').attr({ 'href': '#', 'image-key': k }).append($('<img>').attr({ 'width': Ansel.conf.thumbWidth, 'height': Ansel.conf.thumbHeight, src: i.url })));
thumbs.append(img);
});
if ($.mobile.activePage.attr('id') != 'galleryview') {
Expand Down

0 comments on commit c431269

Please sign in to comment.