threw out slate, mustache and zepto. replaced with minified.js

This commit is contained in:
Keegan
2016-01-08 18:54:57 -08:00
parent 58a1a3f498
commit 08bff3ac4b
125 changed files with 10464 additions and 260 deletions
+1 -1
View File
@@ -32,7 +32,7 @@ module.exports = [
"value": "Hello",
"label": "Greeting",
"attributes": {
"placeholder": "Enter a \"greeting\"",
"placeholder": "Enter a \"greeting\" >",
"limit": 10,
"required": "required"
}
+9
View File
@@ -1,5 +1,14 @@
'use strict';
module.exports = function() {
var Api = this;
var testHandler = function() {
console.debug('KEEGAN: EVENT', this);
Api.getItemByAppKey('background').off(testHandler);
};
Api.getItemByAppKey('background').on('change', testHandler);
console.debug('custom fn worked');
};
+6 -3
View File
@@ -1,14 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Pebble Clay Development Page</title>
<link rel="stylesheet" href="../tmp/config-page.css">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!--<link rel="stylesheet" href="../vendor/pebble-slate/dist/css/slate.min.css">-->
<link rel="stylesheet" href="../tmp/config-page.css">
</head>
<body>
<form id="main-form"></form>
<form id="main-form" class="inputs"></form>
<script src="../tmp/dev.js"></script>
<script src="../tmp/config-page.js"></script>
<!--<script src="../src/scripts/vendor/minified/minified.min.js"></script>-->
<!--<script src="../vendor/pebble-slate/dist/js/slate.min.js"></script>-->
</body>
</html>