Changeset 1903135
- Timestamp:
- 07/03/2018 04:23:50 AM (8 years ago)
- Location:
- growthfunnel
- Files:
-
- 2 edited
-
tags/1.0.0/gfsw.js.php (modified) (1 diff)
-
trunk/gfsw.js.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
growthfunnel/tags/1.0.0/gfsw.js.php
r1900354 r1903135 4 4 header("X-Robots-Tag: none"); 5 5 ?> 6 const version = Math.random(); 6 const urlParams = new URLSearchParams(location.search); 7 const version = urlParams.has('_v') ? urlParams.get('_v') : '0.1.5'; 7 8 let apiHost = ''; 8 9 let siteId = ''; -
growthfunnel/trunk/gfsw.js.php
r1900355 r1903135 4 4 header("X-Robots-Tag: none"); 5 5 ?> 6 const version = Math.random(); 6 const urlParams = new URLSearchParams(location.search); 7 const version = urlParams.has('_v') ? urlParams.get('_v') : '0.1.5'; 7 8 let apiHost = ''; 8 9 let siteId = '';
Note: See TracChangeset
for help on using the changeset viewer.