Navigation Menu

Skip to content

Commit

Permalink
remove pad creation form
Browse files Browse the repository at this point in the history
  • Loading branch information
johndbritton committed Jul 21, 2012
1 parent 5384a8e commit 695298d
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions static/index.html
Expand Up @@ -54,27 +54,12 @@
}
});
};
$("#create").click(function(event) {
event.preventDefault();
var name = $("#name").val();
$.get(
"/api/1/createPad",
{
padName: name
},
function() {
$(location).attr('href', '/p/' + name);
}
)
});
});});
</script>
</head>
<body>
<div id="container">
<div id="login"></div>
<input id="name" type="text" placeholder="Pad Name"></input>
<button id="create">Create</button>
</div>
</body>
</html>

0 comments on commit 695298d

Please sign in to comment.