``` // HUGE (HOPEFULLY!!!) TEMPORARY HACK TO GET...
# suitescript
m
Copy code
// HUGE (HOPEFULLY!!!) TEMPORARY HACK TO GET THIS WORKING WITH 2018.2
  var oldDefine = window.define;
  window.define = null;
  
  jQuery.getScript(TYPEAHEAD_LIB_SRC, () => {
    window.define = oldDefine;
e
I just tested this workaround and it did the trick for me, thanks. In my case I ended up editing the source of my libs to remove the amd portion, but this is much cleaner. Thanks!
w
hi gurus, just curious -- how do you implement this? thanks in advance!