Skip to content

Commit 6ff749f

Browse files
committed
add cp-bootcamp link to terminal
1 parent b987bf1 commit 6ff749f

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

static/js/terminal.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,7 @@
380380
response += ', <strong>shades()</strong>';
381381
response += ', <strong>twShare()</strong>';
382382
response += ', <strong>stl()</strong>';
383+
response += ', <strong>cp()</strong>';
383384
response += ', <strong>pyDocs()</strong>';
384385
response += ', <strong>newsletter()</strong>';
385386
response += ', <strong>test()</strong>'
@@ -406,6 +407,7 @@
406407
if (customFunctionName == 'shades') response = 'See the world through the eyes of a douchebag.';
407408
if (customFunctionName == 'twShare') response = 'Share Codecell with you friends on Twitter.';
408409
if (customFunctionName == 'stl') response = 'Opens STL Reference material by Codecell team';
410+
if (customFunctionName == 'cp') response = 'Opens Logic Building (for competitive programming) Reference material by Codecell team';
409411
if (customFunctionName == 'git') response = 'Opens Git-Github Reference material by Codecell team';
410412
if (customFunctionName == 'pyDocs') response = 'Opens Python reference material by Codecell team';
411413
if (customFunctionName == 'newsletter') response = 'Opens our exquisitive newsletter, written only for you !';
@@ -680,15 +682,19 @@
680682
}
681683

682684
function stl() {
683-
window.open("http://www.kjscecodecell.com/standard-library-in-x/");
685+
window.open("https://www.kjscecodecell.com/standard-library-in-x/");
686+
}
687+
688+
function cp() {
689+
window.open("https://www.kjscecodecell.com/CP-Bootcamp-2021/");
684690
}
685691

686692
function git() {
687693
window.open("https://www.kjscecodecell.com/Git-CheatSheet/");
688694
}
689695

690696
function pyDocs() {
691-
window.open("http://www.kjscecodecell.com/Introduction-to-programming/python/");
697+
window.open("https://www.kjscecodecell.com/Introduction-to-programming/python/");
692698
}
693699

694700
function newsletter() {

0 commit comments

Comments
 (0)