javascript - Dropzone.js not working with Google Chrome -


i'm using dropzone in conjunction bootstrap , django, dropzone appears in safari , firefox, not show correctly in chrome. i'm using chrome version 45.

<!doctype html> <html> <head>     <meta charset="utf-8">     <title>metadata</title>     {% load staticfiles %}      <link href="{% static 'main/css/bootstrap.css' %}" type="text/css" rel="stylesheet"/>     <link href="{% static 'main/css/dropzone.css' %}" type="text/css" rel="stylesheet"/> </head> <body> <div class="container">    <!-- main component -->   <div>     <form action="/file-upload" class="dropzone" id="mydropzone">         <!--<button id="submit-all"> submit files </button> -->     </form>     </div>  </div> <!-- /container -->   <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="{% static 'main/js/bootstrap.min.js' %}"></script> <!-- dropzone --> <script src="{% static 'main/js/dropzone.js' %}"></script>  </body> 


Comments

Popular posts from this blog

1111. appearing after print sequence - php -

java - WARN : org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/board/] in DispatcherServlet with name 'appServlet' -

Ruby on Rails, ActiveRecord, Postgres, UTF-8 and ASCII-8BIT encodings -