Skip to content

Commit

Permalink
Merge pull request #7186 from masterbee/jscs-fixes
Browse files Browse the repository at this point in the history
[Code Formatting] - Corrected various code formats
  • Loading branch information
masterbee committed Nov 7, 2015
2 parents 0f614e0 + d5c696c commit 004bd60
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/plugins/charts/charts.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
parseFloat( cellValue.replace( /(\d{1,3}(?:(?: |,)\d{3})*)(?:(?:.|,)(\d{1,2}))?$/, function( a, b, c ) {
return b.replace( / |,/g, "" ) + "." + c || "0";
} ), 10 ),
cellValue.match ( dataCellUnitRegExp )
cellValue.match( dataCellUnitRegExp )
];
}
}
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/deps/geomap-lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -1347,7 +1347,7 @@ var componentName = "wb-geomap",
atts = {};
for ( name in layerAttributes ) {
if ( layerAttributes.hasOwnProperty( name ) ) {
atts[ layerAttributes[ name ] ] = $row.find ( name ).text();
atts[ layerAttributes[ name ] ] = $row.find( name ).text();
}
}
feature.attributes = atts;
Expand Down Expand Up @@ -1435,7 +1435,7 @@ var componentName = "wb-geomap",
atts = {};
for ( name in layerAttributes ) {
if ( layerAttributes.hasOwnProperty( name ) ) {
atts[ layerAttributes[ name ] ] = $row.find ( name ).text();
atts[ layerAttributes[ name ] ] = $row.find( name ).text();
}
}
feature.attributes = atts;
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/feeds/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ describe( "Feeds test suite", function() {
describe( "multiple feed links", function() {
var $elm;

before ( function( done ) {
before( function( done ) {
ajaxCalls = [];
callback = done;

Expand Down
4 changes: 2 additions & 2 deletions src/plugins/multimedia/multimedia.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ var componentName = "wb-mltmd",
volume: i18n( "volume" ),
cc_on: i18n( "cc", "on" ),
cc_off: i18n( "cc", "off" ),
cc_error: i18n ( "cc-err" ),
cc_error: i18n( "cc-err" ),
mute_on: i18n( "mute", "on" ),
mute_off: i18n( "mute", "off" ),
duration: i18n( "dur" ),
Expand Down Expand Up @@ -194,7 +194,7 @@ var componentName = "wb-mltmd",
}
} );
};
} () ),
}() ),

/**
* @method parseHtml
Expand Down

0 comments on commit 004bd60

Please sign in to comment.