-
Notifications
You must be signed in to change notification settings - Fork 23
Canvas Implementation #27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -0,0 +1,2 @@ | |||
VUE_APP_CLIENT_ID= 581cd1a745e24eef5fef |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No need push .env file to GitHub put it in .gitignore.
<template> | ||
<div> | ||
<v-layout justify-center row> | ||
<v-btn-group class = "buttongroup" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
v-btn-group has no closing tag giving an error at console on execution.
function draw() { | ||
var canvas = document.getElementById('newCanvas'); | ||
if (canvas.getContext) { | ||
var ctx = newCanvas.getContext('2d'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this shall be canvas not newCanvas here.
Implemented a page where users can create a new badge for their organization using a canvas.