I am trying to override the signin dialog on the 3.14 api
If i set
esriBundle.identity.info = "Please sign in to access the item on ${server} ${resource}";It works fine
if i change it to
esriBundle.identity.info = "${server} ${resource}";It works fine and I see my changes (it shows only the server name and resource)
However I would like it to only say "Please sign in to access secure resources". The server name is confusing to users
so if I change it to
esriBundle.identity.info = "Please sign in to access secure resources";
or if i remove either the server, or the resource reference i get
TypeError: a is null
error is on a.setAttribute from init.js
Help please
Kelly Hutchins