Skip to content

Commit

Permalink
Update index.html
Browse files Browse the repository at this point in the history
  • Loading branch information
injoon5 authored Oct 7, 2021
1 parent 3f9c012 commit 3ac406d
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -446,5 +446,48 @@ <h3 class="text-2xl pt-1 pb-6 font-extrabold flex items-center">암호화 (base6
</div>
<br>
<br>
<!-- Channel Plugin Scripts -->
<script>
(function() {
var w = window;
if (w.ChannelIO) {
return (window.console.error || window.console.log || function(){})('ChannelIO script included twice.');
}
var ch = function() {
ch.c(arguments);
};
ch.q = [];
ch.c = function(args) {
ch.q.push(args);
};
w.ChannelIO = ch;
function l() {
if (w.ChannelIOInitialized) {
return;
}
w.ChannelIOInitialized = true;
var s = document.createElement('script');
s.type = 'text/javascript';
s.async = true;
s.src = 'https://cdn.channel.io/plugin/ch-plugin-web.js';
s.charset = 'UTF-8';
var x = document.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s, x);
}
if (document.readyState === 'complete') {
l();
} else if (window.attachEvent) {
window.attachEvent('onload', l);
} else {
window.addEventListener('DOMContentLoaded', l, false);
window.addEventListener('load', l, false);
}
})();
ChannelIO('boot', {
"pluginKey": "f8e11382-d7aa-4048-bd72-b5d9c6caa6c2"
});
</script>
<!-- End Channel Plugin -->

</body>
</html>

2 comments on commit 3ac406d

@vercel
Copy link

@vercel vercel bot commented on 3ac406d Oct 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

new-web – ./

new-web-oij.vercel.app
new-web-git-main-oij.vercel.app
oij.vercel.app

@vercel
Copy link

@vercel vercel bot commented on 3ac406d Oct 7, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

web-oij – ./

web-oij-git-main-oij.vercel.app
web-oij-oij.vercel.app
web-oij.vercel.app

Please sign in to comment.