Skip to content

Commit

Permalink
more of the same
Browse files Browse the repository at this point in the history
  • Loading branch information
billba committed Feb 27, 2017
1 parent 9e316ab commit 5ca6c39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion samples/backchannel/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ <h2 style="font-family:Segoe UI;">Type a color into the WebChat!</h2>
name: params["botname"] || 'botname'
};

window['botchatDebug'] = params['debug'];
window['botchatDebug'] = params['debug'] && params['debug'] === "true";

var botConnection = new BotChat.DirectLine({
secret: params['s'],
Expand Down
2 changes: 1 addition & 1 deletion samples/standalone/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
name: params["botname"] || 'botname'
};

window['botchatDebug'] = params['debug'];
window['botchatDebug'] = params['debug'] && params['debug'] === "true";

BotChat.App({
directLine: {
Expand Down

0 comments on commit 5ca6c39

Please sign in to comment.