aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/comments/admin/views/url-queries/url-queries.js
blob: 6267691ead82f350e61957daca4e5a2b29a1798d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Wait for the page HTML to be parsed
document.addEventListener ('DOMContentLoaded', function () {
	// Get the "New Query Pair" and "Save" buttons
	var newButton = document.getElementById ('new-button');
	var queriesList = document.getElementById ('queries-list');
	var saveButton = document.getElementById ('save-button');

	newButton.onclick = function ()
	{
		// Create inputs and indentation
		var div = document.createElement ('div');
		var names = document.getElementsByClassName ('name');
		var values = document.getElementsByClassName ('value');
		var indentation = document.createTextNode ('\n\t\t\t\t\t');

		// Clone the first name and value fields
		var nameInput = names[0].cloneNode (true);
		var valueInput = values[0].cloneNode (true);

		// Remove their values
		nameInput.value = '';
		valueInput.value = '';

		// Append indentation and input to URL Query Pair list
		div.appendChild (nameInput);
		div.appendChild (indentation);
		div.appendChild (valueInput);
		queriesList.appendChild (div);
	};

	// Disable the "Save" button when clicked
	saveButton.onclick = function ()
	{
		this.disabled = true;
	};
}, false);