remove input pad
parent
11961b4f1d
commit
cdf02ac725
@ -1,34 +0,0 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html>
|
|
||||||
<head>
|
|
||||||
<meta content="text/html; charset=utf-8" http-equiv="content-type"/>
|
|
||||||
<script data-main="main" src="/bower_components/requirejs/require.js"></script>
|
|
||||||
<style>
|
|
||||||
*{
|
|
||||||
padding: 0px;
|
|
||||||
margin: 0px;
|
|
||||||
}
|
|
||||||
textarea{
|
|
||||||
box-sizing: border-box;
|
|
||||||
border: 1px solid blue;
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
|
|
||||||
font-size: 25px;
|
|
||||||
background-color: #222;
|
|
||||||
color: #CCC;
|
|
||||||
}
|
|
||||||
input {
|
|
||||||
font-size: 25px;
|
|
||||||
background-color: #222;
|
|
||||||
color: #CCC;
|
|
||||||
height: 500px;
|
|
||||||
width: 800px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<input type="text"></input>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
|||||||
define([
|
|
||||||
'/api/config?cb=' + Math.random().toString(16).substring(2),
|
|
||||||
'/common/realtime-input.js',
|
|
||||||
'/common/messages.js',
|
|
||||||
'/common/crypto.js',
|
|
||||||
'/bower_components/jquery/dist/jquery.min.js',
|
|
||||||
'/customize/pad.js'
|
|
||||||
], function (Config,
|
|
||||||
RTText, // RTText
|
|
||||||
Messages,
|
|
||||||
Crypto) {
|
|
||||||
|
|
||||||
var $ = window.jQuery;
|
|
||||||
|
|
||||||
var $textarea = $('input');
|
|
||||||
|
|
||||||
$(window).on('hashchange', function() {
|
|
||||||
window.location.reload();
|
|
||||||
});
|
|
||||||
if (window.location.href.indexOf('#') === -1) {
|
|
||||||
window.location.href = window.location.href + '#' + Crypto.genKey();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var initialState = Messages.initialState;
|
|
||||||
|
|
||||||
$textarea.val(initialState);
|
|
||||||
|
|
||||||
var key = Crypto.parseKey(window.location.hash.substring(1));
|
|
||||||
|
|
||||||
var config = {
|
|
||||||
textarea: $textarea[0],
|
|
||||||
websocketURL: Config.websocketURL,
|
|
||||||
userName: Crypto.rand64(8),
|
|
||||||
channel: key.channel,
|
|
||||||
cryptKey: key.cryptKey
|
|
||||||
};
|
|
||||||
|
|
||||||
var rttext = RTText.start(config);
|
|
||||||
});
|
|
Loading…
Reference in New Issue