* Save the raw Value into sessionStorage or a cookie depending on what the browser is supporting. * @private
()
| 6262 | * @private |
| 6263 | */ |
| 6264 | _saveValueToPersistentStorage() { |
| 6265 | if (this.settings.saveValueToSessionStorage) { |
| 6266 | sessionStorage.setItem(this.rawValueStorageName, this.rawValue); |
| 6267 | } |
| 6268 | } |
| 6269 | |
| 6270 | /** |
| 6271 | * Retrieve the raw value from sessionStorage or the cookie depending on what the browser is supporting. |
no outgoing calls
no test coverage detected