mdgio / iMap

Maryland iMAP applications
10 stars 24 forks source link

AGO template - empty config params #14

Closed jsomerville closed 11 years ago

jsomerville commented 11 years ago

Unspecified parameters are not handled properly in app.js (starting approximately line 162).

Cause: The checks in the pattern of: "if (response.values.theme !== undefined)" are not sufficient. Empty strings (i.e. no parameter was specified) are not = undefined.

Change config params to pattern of "if (response.values.titleLogoUrl)". Test to see if this is sufficient.