From 226c31bc35728ba7bf1dcabf5ec09818bc691326 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Fri, 21 Nov 2014 14:01:30 -0500 Subject: [PATCH] Source.js Changed the tooltip for environment variables for custom inventory script --- awx/ui/static/js/forms/Source.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/awx/ui/static/js/forms/Source.js b/awx/ui/static/js/forms/Source.js index 6973716021..e65ad00dff 100644 --- a/awx/ui/static/js/forms/Source.js +++ b/awx/ui/static/js/forms/Source.js @@ -118,7 +118,11 @@ angular.module('SourceFormDefinition', []) parseTypeName: 'envParseType', dataTitle: "Environment Variables", //'

Source Variables

', dataPlacement: 'right', - awPopOver: "

These are environment variables

", + awPopOver: "

Provide key/value pairs using either YAML or JSON.

" + + "JSON:
\n" + + "
{
\"somevar\": \"somevalue\",
\"password\": \"magic\"
}
\n" + + "YAML:
\n" + + "
---
somevar: somevalue
password: magic
\n", dataContainer: 'body' }, source_vars: {