Browse Source

Updates to release v4.3.4

Kartik Visweswaran 8 years ago
parent
commit
8dd9021a66
12 changed files with 18 additions and 12 deletions
  1. 6 0
      CHANGE.md
  2. 1 1
      README.md
  3. 1 1
      bower.json
  4. 1 1
      css/fileinput.css
  5. 1 1
      css/fileinput.min.css
  6. 1 1
      examples/index.html
  7. 2 2
      js/fileinput.js
  8. 1 1
      js/fileinput.min.js
  9. 1 1
      nuget/Package.nuspec
  10. 1 1
      package.json
  11. 1 1
      themes/fa/theme.js
  12. 1 1
      themes/gly/theme.js

+ 6 - 0
CHANGE.md

@@ -1,6 +1,12 @@
 Change Log: `bootstrap-fileinput`
 =================================
 
+## version 4.3.4 (under development)
+
+**Date:** 11-Jul-2016
+
+1. (bug #710): Fix bug for `ifSet` validation.
+
 ## version 4.3.3
 
 **Date:** 09-Jul-2016

+ 1 - 1
README.md

@@ -11,7 +11,7 @@ An enhanced HTML 5 file input for Bootstrap 3.x with file preview for various fi
 
 ![File Input Screenshot](https://lh3.googleusercontent.com/-3FiEmc_okc4/VBw_d2LBAJI/AAAAAAAAAL8/KbVj5X9Dus0/w596-h454-no/FileInput.jpg)
 
-> NOTE: The latest version of the plugin is v4.3.3. Refer the [CHANGE LOG](https://github.com/kartik-v/bootstrap-fileinput/blob/master/CHANGE.md) for details. 
+> NOTE: The latest version of the plugin is v4.3.4. Refer the [CHANGE LOG](https://github.com/kartik-v/bootstrap-fileinput/blob/master/CHANGE.md) for details. 
 
 ## Documentation and Demo
 

+ 1 - 1
bower.json

@@ -1,6 +1,6 @@
 {
     "name": "bootstrap-fileinput",
-    "version": "4.3.3",
+    "version": "4.3.4",
     "homepage": "https://github.com/kartik-v/bootstrap-fileinput",
     "authors": [
         "Kartik Visweswaran <[email protected]>"

+ 1 - 1
css/fileinput.css

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v4.3.3
+ * bootstrap-fileinput v4.3.4
  * http://plugins.krajee.com/file-input
  *
  * Author: Kartik Visweswaran

+ 1 - 1
css/fileinput.min.css

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v4.3.3
+ * bootstrap-fileinput v4.3.4
  * http://plugins.krajee.com/file-input
  *
  * Author: Kartik Visweswaran

+ 1 - 1
examples/index.html

@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<!-- release v4.3.3, copyright 2014 - 2016 Kartik Visweswaran -->
+<!-- release v4.3.4, copyright 2014 - 2016 Kartik Visweswaran -->
 <html lang="en">
     <head>
         <meta charset="UTF-8"/>

+ 2 - 2
js/fileinput.js

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v4.3.3
+ * bootstrap-fileinput v4.3.4
  * http://plugins.krajee.com/file-input
  *
  * Author: Kartik Visweswaran
@@ -504,7 +504,7 @@
     };
     ifSet = function (needle, haystack, def) {
         def = def || '';
-        return (typeof haystack === 'object' && needle in haystack) ? haystack[needle] : def;
+        return (haystack && typeof haystack === 'object' && needle in haystack) ? haystack[needle] : def;
     };
     getElement = function (options, param, value) {
         return (isEmpty(options) || isEmpty(options[param])) ? value : $(options[param]);

File diff suppressed because it is too large
+ 1 - 1
js/fileinput.min.js


+ 1 - 1
nuget/Package.nuspec

@@ -3,7 +3,7 @@
   <metadata>
     <id>bootstrap-fileinput</id>
 	<title>bootstrap-fileinput</title>
-    <version>4.3.3</version>
+    <version>4.3.4</version>
     <authors>Kartik Visweswaran</authors>
     <owners>Kartik Visweswaran</owners>
     <licenseUrl>https://github.com/kartik-v/bootstrap-fileinput/blob/master/LICENSE.md</licenseUrl>

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
     "name": "bootstrap-fileinput",
-    "version": "4.3.3",
+    "version": "4.3.4",
     "homepage": "https://github.com/kartik-v/bootstrap-fileinput",
     "authors": [
         "Kartik Visweswaran <[email protected]>"

+ 1 - 1
themes/fa/theme.js

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v4.3.3
+ * bootstrap-fileinput v4.3.4
  * http://plugins.krajee.com/file-input
  *
  * Font Awesome icon theme configuration for bootstrap-fileinput. Requires font awesome assets to be loaded.

+ 1 - 1
themes/gly/theme.js

@@ -1,5 +1,5 @@
 /*!
- * bootstrap-fileinput v4.3.3
+ * bootstrap-fileinput v4.3.4
  * http://plugins.krajee.com/file-input
  *
  * Glyphicon (default) theme configuration for bootstrap-fileinput.

Some files were not shown because too many files changed in this diff