UI elements
* title
* body text
* 3 read-only fields with labels
* numeric entry for license count
- 5 external links
// convert queryString to params | |
var params = {}; | |
window.location.search.replace( | |
new RegExp("([^?=&]+)(=([^&]*))?", "g"), | |
function(a, key, b, val) { | |
var num = Number(val); | |
if( !_.isNaN(num) && _.isNumber(num) ){ | |
val = num; | |
} else { | |
if(val==="true") { |