Browse Source

Merge pull request #4544 from mathiasrw/patch-1

Correct check for undefined variable
pull/5359/merge
Jack Lukic 7 years ago
committed by GitHub
parent
commit
ba26289c5f
1 changed files with 1 additions and 1 deletions
  1. 2
      src/definitions/modules/popup.js

2
src/definitions/modules/popup.js

@ -415,7 +415,7 @@ $.fn.popup = function(parameters) {
},
supports: {
svg: function() {
return (typeof SVGGraphicsElement === undefined);
return (typeof SVGGraphicsElement === 'undefined');
}
},
animate: {

Loading…
Cancel
Save