Magnific-Popup icon indicating copy to clipboard operation
Magnific-Popup copied to clipboard

replace deprecated (as per jQuery 3.x) methods -- fixes #1163

Open hagman opened this issue 1 year ago • 0 comments

Testing the code against the jQuery Migrate Plugin (current version: 3.4.1) reveals a few deprecated functions. Accordingly,

  • replace .someUiEvent(func) with .on('someUiEvent', func)
  • replace .someUiEvent() with .trigger('someUiEvent')
  • replace .isFunction(arg) with typeoff arg === 'function'

hagman avatar Jun 15 '23 21:06 hagman