Skip to content

Commit efdc28b

Browse files
fix: Update quickstart.gs for the tabs in Docs feature (#480)
This is part of an ongoing effort to update Docs API guides/documentation for the tabs feature.
1 parent e498743 commit efdc28b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/quickstart/quickstart.gs

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function printDocTitle() {
2323
const documentId = '195j9eDD3ccgjQRttHhJPymLJUCOUjs-jmwTrekvdjFE';
2424
try {
2525
// Get the document using document id
26-
const doc = Docs.Documents.get(documentId);
26+
const doc = Docs.Documents.get({'includeTabsContent': true}, documentId);
2727
// Log the title of document.
2828
console.log('The title of the doc is: %s', doc.title);
2929
} catch (err) {

0 commit comments

Comments
 (0)