소스 검색

Fix undefined check in Excel import.

Andrew Klopper 8 년 전
부모
커밋
9ecde56cb3
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      feed_content/templates/feed_content/feed_category_import_excel.html

+ 1 - 1
feed_content/templates/feed_content/feed_category_import_excel.html

@@ -88,7 +88,7 @@
88 88
 <script>
89 89
   'use strict';
90 90
 
91
-  if (FileReader.prototype.readAsBinaryString === undefined) {
91
+  if (typeof FileReader.prototype.readAsBinaryString === 'undefined') {
92 92
     FileReader.prototype.readAsBinaryString = function (fileData) {
93 93
       var binary = "";
94 94
       var pt = this;