Skip to content
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

Add client-side QR code generation for easily sharing meeting data #178

Open
gridhead opened this issue Sep 29, 2021 · 6 comments
Open

Add client-side QR code generation for easily sharing meeting data #178

gridhead opened this issue Sep 29, 2021 · 6 comments
Assignees
Labels
D: research Research and more data is needed to make a decision fragment A functional rewrite of the project frontend Frontend development hacktoberfest Contribute here to get a free tee T: new change Adds new capabilities or functionality

Comments

@gridhead
Copy link
Member

Add client-side QR code generation for easily sharing meeting data

@gridhead gridhead added T: new change Adds new capabilities or functionality D: research Research and more data is needed to make a decision fragment A functional rewrite of the project frontend Frontend development hacktoberfest Contribute here to get a free tee labels Sep 29, 2021
@bluetigerlily
Copy link

can I work on this one?

@gridhead
Copy link
Member Author

Sure, assigning you this issue ticket.

@bluetigerlily
Copy link

<script src="{{ url_for('static', filename='jscn/easy.qrcode.min.js') }}"></script>

and

    <script type="text/javascript">

    let addy = window.location.href;
let options = {
	text: `${addy}`
};

// Create QRCode Object
new QRCode(document.getElementById("qrcode"), options);
    </script>

are the 2 changes I made in the statefile.html I wasn't able to test this version of it because I had to redo it two times for the flask server could you look over this change for me please.

@bluetigerlily
Copy link

the way it works is just calling the current pages url and then has it generate a qr code of the current url for the created statefile.

@gridhead
Copy link
Member Author

Can you please make a PR on this?

@bluetigerlily
Copy link

Do you want me to make a separate branch for the PR ?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
D: research Research and more data is needed to make a decision fragment A functional rewrite of the project frontend Frontend development hacktoberfest Contribute here to get a free tee T: new change Adds new capabilities or functionality
Projects
None yet
Development

No branches or pull requests

2 participants