Skip to content

Commit 5f25a97

Browse files
committed
more plot.ly to Chart Studio Cloud replace
1 parent 1fe9c53 commit 5f25a97

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/plot_api/plot_config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ var configAttributes = {
218218
valType: 'boolean',
219219
dflt: false,
220220
description: [
221-
'Determines whether a link to plot.ly is displayed',
221+
'Determines whether a link to Chart Studio Cloud is displayed',
222222
'at the bottom right corner of resulting graphs.',
223223
'Use with `sendData` and `linkText`.'
224224
].join(' ')
@@ -236,7 +236,7 @@ var configAttributes = {
236236
dflt: true,
237237
description: [
238238
'If *showLink* is true, does it contain data',
239-
'just link to a plot.ly file?'
239+
'just link to a Chart Studio Cloud file?'
240240
].join(' ')
241241
},
242242
showSources: {

src/plot_api/plot_schema.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ function mergeValTypeAndRole(attrs) {
633633
valType: 'string',
634634
role: 'info',
635635
description: [
636-
'Sets the source reference on plot.ly for ',
636+
'Sets the source reference on Chart Studio Cloud for ',
637637
attrName, '.'
638638
].join(' '),
639639
editType: 'none'

src/registry.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ exports.getModule = function(trace) {
138138
exports.traceIs = function(traceType, category) {
139139
traceType = getTraceType(traceType);
140140

141-
// old plot.ly workspace hack, nothing to see here
141+
// old Chart Studio Cloud workspace hack, nothing to see here
142142
if(traceType === 'various') return false;
143143

144144
var _module = exports.modules[traceType];

test/jasmine/tests/annotations_test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ describe('annotations log/linear axis changes', function() {
514514
// we don't try to figure out the position on a new axis / canvas
515515
// automatically when you change xref / yref, we leave it to the caller.
516516
// previously this logic was part of plotly.js... But it's really only
517-
// the plot.ly workspace that wants this and can assign an unambiguous
517+
// the Chart Studio Cloud workspace that wants this and can assign an unambiguous
518518
// meaning to it, so we'll move the logic there, where there are far
519519
// fewer edge cases to consider because xref never gets edited along
520520
// with anything else in one `relayout` call.

0 commit comments

Comments
 (0)