Skip to content

Commit fcc00c1

Browse files
committed
lint in plots.js
1 parent c8eb205 commit fcc00c1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/plots/plots.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ plots.fontWeight = 'normal';
3131
/**
3232
* plots.register: register a module as the handler for a trace type
3333
*
34-
* @param {object} module the module that will handle plotting this trace type
34+
* @param {object} _module the module that will handle plotting this trace type
3535
* @param {string} thisType
3636
* @param {array of strings} categoriesIn all the categories this type is in,
3737
* tested by calls: Plotly.Plots.traceIs(trace, oneCategory)
@@ -357,7 +357,7 @@ function positionPlayWithData(gd, container){
357357

358358
if(gd._context.sendData) {
359359
link.on('click', function() {
360-
plots.sendDataToCloud(gd)
360+
plots.sendDataToCloud(gd);
361361
});
362362
}
363363
else {
@@ -400,7 +400,7 @@ plots.sendDataToCloud = function(gd) {
400400

401401
gd.emit('plotly_afterexport');
402402
return false;
403-
}
403+
};
404404

405405
plots.supplyDefaults = function(gd) {
406406
// fill in default values:

0 commit comments

Comments
 (0)