added ver to qsurvey url

This commit is contained in:
Danny Coates 2017-12-05 12:45:36 -08:00
parent 28a7e0f717
commit 1849d712b1
No known key found for this signature in database
GPG key ID: 4C442633C62E00CB
3 changed files with 37 additions and 8 deletions

5
build/version_loader.js Normal file
View file

@ -0,0 +1,5 @@
const version = require('../package.json').version;
module.exports = function(source) {
return source.replace('VERSION', version);
};