We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e99edcb commit 491df71Copy full SHA for 491df71
src/index.ts
@@ -184,7 +184,7 @@ function activateCodeSnippet(
184
//if user just right-clicks cell(s) to save
185
const curr = document.getElementsByClassName('jp-Cell jp-mod-selected');
186
const resultArray = [];
187
- for (let i = 1; i < curr.length; i++) {
+ for (let i = 0; i < curr.length; i++) {
188
//loop through each cell
189
const text = curr[i] as HTMLElement;
190
const textContent = text.innerText;
0 commit comments