If you're in JavaScript and have a string like:
'/hcp/html/mTag.js'
You can prevent Actinic frome seeing this as a filename by breaking the string up a bit. E.g.
'/hcp/html/mTag' + '.' + 'js'
'/hcp/html/mTag.js'
You can prevent Actinic frome seeing this as a filename by breaking the string up a bit. E.g.
'/hcp/html/mTag' + '.' + 'js'
Comment