deeper issues with __exposedProps__ and jQuery mobile when triggering create to update gui of dynamically loaded content
With jquery 1.8.1 and jqm 1.1.1 while developing a custom plugin
_exposedProps_ issue occurs (I know spare with me thanks).
I've been dynamically loading page content (myself cause jqm was not sufficient).
When loaded into a div I must call .trigger("create") on that content to get it to reformat jmobile gui look of components. (I'll be deleting all of it next because of this shortly just thought you'd like to know.)
Anyway once I call "trigger create", in jQuery the exposedProps violation warning occurs on line 322 at
src = target[ name ];
I've tracked it down to an empty Object {} passed through argument [1] on line 301
target = arguments[1] || {};
which exists not from the || bars for arg 2 is a role="page" with my main pages title.
So it seems as though where ever jQuery (mobile?) is creating this role page object array for extend via stack...
going backwards
extend, dataAttr, ?, access, data, getScreenHeight _idStringEscape, refresh _create, Widget _createWidget, widget widget, each, each, widget, enhanceWithin, enhanceWithin, _create, dispatch, eventHandle, trigger trigger, each, each, trigger, loadContent [that's my function where I trigger the GUI enhancements].
I've tried to skip or check when the Object is empty or replace the empty object with a new one but it always violates on that empty target.