Giter VIP home page Giter VIP logo

Comments (4)

pankajarm avatar pankajarm commented on May 17, 2024

Thanks for pointing out, Indeed it was pre existing issue where JS button property was disabled by default, I updated this with correct JS properties 2 days ago, can you please pull the latest repo?

from fastai-vision-app.

pankajarm avatar pankajarm commented on May 17, 2024

Plus, I did test it few hours ago on AWS Beanstalk, and it work fine... LMK if you still face same issue

from fastai-vision-app.

anhquan0412 avatar anhquan0412 commented on May 17, 2024

I believe I am on the newest version now (commit on Jan 4 is 'Merge branch master ...') and it still doesn't work on beanstalk. Can you tell me which line of code to change the JS button behavior?

from fastai-vision-app.

pankajarm avatar pankajarm commented on May 17, 2024

Under index.html button type property is on page load is "button" instead of "submit" =>

					<button type = "button" id = "submit_btn" class="contact100-form-btn">
						<span>
							Upload & Analyze Image
							<i class="fa fa-long-arrow-right m-l-7" aria-hidden="true"></i>
						</span>
					</button>

This property changes to "submit" when user upload correctly file image type (which is png and jpeg)
under utility.js =>

function fileChange(e) {

var file = e.target.files[0];

if (file.type == "image/jpeg" || file.type == "image/png") {

    // Activate Submit Button
    el('submit_btn').type = "submit";
    document.getElementById('inp_img').value = '';

from fastai-vision-app.

Related Issues (3)

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.