Giter Club home page Giter Club logo

Comments (7)

assembler avatar assembler commented on July 17, 2024

have you included both cloudinary and attachinary javascript files through asset pipeline?

//= require cloudinary
//= require attachinary

from attachinary.

algritz avatar algritz commented on July 17, 2024

Yes, they are at the bottom of my application.js file.

I also made sure they are loaded by looking at the source of my page once it is rendered

from attachinary.

assembler avatar assembler commented on July 17, 2024

Can you send me the full js stack trace, or if you could share the code i'll be glad to help you out..

from attachinary.

algritz avatar algritz commented on July 17, 2024

Sure, here's the repository

https://github.com/algritz/Livre_recette_v3/tree/add_image_support

note: most of the "UI" of the app is in French, but the code is in English, so you should still be able to dig inside it.

I can put the app on heroku if you want to test it by yourself and not have to deal with the installation.

Edit :

I've setup the app on heroku so that you can test by yourself.

login with

[email protected] / allo123

You should be able to see the error on this page :

https://livre-recettes-v3.herokuapp.com/recettes/new

A big thanks for your help!

from attachinary.

algritz avatar algritz commented on July 17, 2024

Uncaught TypeError: Object [object Object] has no method 'attachinary' => happens on recettes.js at line 5

which happens to be :

$('.attachinary-input').attachinary();

from attachinary.

assembler avatar assembler commented on July 17, 2024

The problem is here:
https://github.com/algritz/Livre_recette_v3/blob/add_image_support/app/assets/javascripts/recettes.js.coffee#L5

Whitespace is significant in coffeescript. Your code actually compiles into this:

$(document).ready(function() {});
$('.attachinary-input').attachinary();

And it fires .attachinary() before the dom is loaded, and since you're requiring that file before the attachinary one (https://github.com/algritz/Livre_recette_v3/blob/add_image_support/app/assets/javascripts/application.js#L15) it raises an exception.

Solution

You need to add 2 spaces on former line, so it looks like this:

$(document).ready -> 
  $('.attachinary-input').attachinary()

Also, make sure that you put //= require_tree . always after all other dependencies. It is not required in this case, but is a good practice.

from attachinary.

algritz avatar algritz commented on July 17, 2024

Issue is fixed, a big thanks for your help.

I didn't knew about the significance of the whitespaces in coffescript, well now I know.

Side note : I had to re-precompile my assets in order to get it working, not a big deal, but I'm writing it down in case someone else gets the same issue as I did.

from attachinary.

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.