Giter Club home page Giter Club logo

Comments (12)

zjkyz8 avatar zjkyz8 commented on July 22, 2024

I have same issue, did not get solution

from angular-qrcode.

flacohenao avatar flacohenao commented on July 22, 2024

you can do what I did as well...

Look, put a download button and give it an id, then go to the script and in the part where the script asign the download URL you can pass it trough DOM elements managements and then the image will be downloaded.

from angular-qrcode.

kodl avatar kodl commented on July 22, 2024

same issue ...
Found that problem is caused by loosing pointer to DOM on this part of code (line 129)

if (link) {
          link.className = 'qrcode-link';
          $canvas.wrap(link);
          domElement = link;
        }

main problem is on domElement = link

Overhead is set it to this way domElement = element[0].firstChild

if (link) {
          link.className = 'qrcode-link';
          $canvas.wrap(link);
          domElement = element[0].firstChild;
        }

from angular-qrcode.

monospaced avatar monospaced commented on July 22, 2024

interesting @kodl, those 2 code examples should be equivalent, and download does works for me here (in chrome) without this fix:

http://monospaced.github.io/angular-qrcode/

do you have any more info on your setup, is it a particular browser you're experiencing this issue in?

from angular-qrcode.

ll0jj0xx0 avatar ll0jj0xx0 commented on July 22, 2024

Same issue here. @kodl is right. After $canvas.wrap(link), the 'link' is no longer the same 'link'.
However the demo link works fine for me too.

from angular-qrcode.

ll0jj0xx0 avatar ll0jj0xx0 commented on July 22, 2024

Different Angular version? I'm using Angular 1.3.18

from angular-qrcode.

kodl avatar kodl commented on July 22, 2024

Angular-qrcode is part of my (bigger project) - I didn't tested the plain component separately (yet) .. On project I'm using "angularjs": "~1.3.17" and tested it on Chrome 45.0.2454.101, iPhone Safari and Android Chrome.

When I've debug it I found, that variable domElement contains element with correct href, but it isn't in the DOM - in DOM was cloned element without href. Seems that $canvas.wrap(link) create (for some reason) a copy of element and wrap it around canvas, but return original element which is unattached to DOM (classname is set to 'qrcode-link' on both instances).

I'm going to test it on separate project (on the demo code) .. but currently I'm out of time .. :(

from angular-qrcode.

monospaced avatar monospaced commented on July 22, 2024

Thanks everyone 👍

My conclusion is that the behaviour of angular.element.wrap() changed between Angular 1.2.10 and 1.4.7.

Should be fixed in c8cf213, and new version 6.1.3 released.

from angular-qrcode.

monospaced avatar monospaced commented on July 22, 2024

Actually looking at the comments here and #24, the behaviour of wrap() must had changed by Angular 1.3.x.

from angular-qrcode.

kodl avatar kodl commented on July 22, 2024

👍 Thank you for quick fix

from angular-qrcode.

zjkyz8 avatar zjkyz8 commented on July 22, 2024

Thank very much for fixing it :)

from angular-qrcode.

monospaced avatar monospaced commented on July 22, 2024

fixed

from angular-qrcode.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.