Attempt at validating.

This commit is contained in:
James Cole
2016-01-14 18:57:52 +01:00
parent cd60b852a1
commit 42203ba872
5 changed files with 20 additions and 8 deletions

View File

@@ -1,27 +0,0 @@
/*
* edit.js
* Copyright (C) 2016 Sander Dorigo
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
// make a line.
$(function () {
"use strict";
console.log("edit");
addNewTrigger();
addNewAction();
$('.add_rule_trigger').click(function () {
addNewTrigger();
return false;
});
$('.add_rule_action').click(function () {
addNewAction();
return false;
});
});