Re: [ClojureScript] typeahead works with :compile :simple, not :compile :advanced

2015-05-13 Thread Jamie Orchard-Hays
Thanks, David. That could be the problem. When using :compile :simple, are externs ignored? Cheers, Jamie On May 13, 2015, at 12:27 PM, David Nolen dnolen.li...@gmail.com wrote: There is no guarantee that using the library itself as the extern will work. In fact you should be surprised if

Re: [ClojureScript] typeahead works with :compile :simple, not :compile :advanced

2015-05-13 Thread David Nolen
There is no guarantee that using the library itself as the extern will work. In fact you should be surprised if it works unless the library follow strict conventions. David On Wed, May 13, 2015 at 12:23 PM, Jamie Orchard-Hays jamie...@gmail.com wrote: Hoping someone might have some insight

Re: [ClojureScript] typeahead works with :compile :simple, not :compile :advanced

2015-05-13 Thread Daniel Kersten
As far as I know, in compile simple identifiers are not renamed, so externs are not needed. On Wed, 13 May 2015 17:28 Jamie Orchard-Hays jamie...@gmail.com wrote: Thanks, David. That could be the problem. When using :compile :simple, are externs ignored? Cheers, Jamie On May 13, 2015, at

Re: [ClojureScript] typeahead works with :compile :simple, not :compile :advanced

2015-05-13 Thread Jamie Orchard-Hays
Yup. I realized right after I sent the email that only :advanced needs externs. On May 13, 2015, at 12:33 PM, Daniel Kersten dkers...@gmail.com wrote: As far as I know, in compile simple identifiers are not renamed, so externs are not needed. On Wed, 13 May 2015 17:28 Jamie Orchard-Hays