Skip to content

Commit 69b3be9

Browse files
committed
fixed code typo
- fixes SharePoint#2656
1 parent cc309da commit 69b3be9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/sp-add-ins/work-with-host-web-data-from-javascript-in-the-add-in-web.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Open the host web (your developer test website) and verify that there is a calen
7575
// Utility functions
7676
7777
function getQueryStringParameter(paramToRetrieve) {
78-
var params = document.___URL.split("?")[1].split("&");
78+
var params = document.___URL.split("?")[1].split("&");
7979
var strParams = "";
8080
for (var i = 0; i < params.length; i = i + 1) {
8181
var singleParam = params[i].split("=");

0 commit comments

Comments
 (0)