Browse Source

let is not supported on Safari

supported browsers reference: http://caniuse.com/#search=let
pull/3966/head
johann.rekowski 8 years ago
parent
commit
72dfb7fba2
3 changed files with 3 additions and 3 deletions
  1. 2
      src/definitions/modules/dropdown.js
  2. 2
      src/definitions/modules/popup.js
  3. 2
      src/definitions/modules/progress.js

2
src/definitions/modules/dropdown.js

@ -3154,7 +3154,7 @@ $.fn.dropdown = function(parameters) {
escape: {
value: function(value) {
let
var
multipleValues = $.isArray(value),
stringValue = (typeof value === 'string'),
isUnparsable = (!stringValue && !multipleValues),

2
src/definitions/modules/popup.js

@ -189,7 +189,7 @@ $.fn.popup = function(parameters) {
}
},
hideGracefully: function(event) {
let
var
$target = $(event.target),
isInDOM = $.contains(document.documentElement, event.target),
inPopup = ($target.closest(selector.popup).length > 0)

2
src/definitions/modules/progress.js

@ -601,7 +601,7 @@ $.fn.progress = function(parameters) {
update: {
toNextValue: function() {
let
var
nextValue = module.nextValue
;
if(nextValue) {

Loading…
Cancel
Save