mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
Typos
This commit is contained in:
parent
72fc5d4646
commit
419f618a30
@ -146,9 +146,9 @@ window.zerobin = {
|
||||
|
||||
getFormatedTime: function(date){
|
||||
date = date || new Date();
|
||||
var h = date.getHours();
|
||||
var m = date.getMinutes();
|
||||
var s = date.getSeconds();
|
||||
var h = date.getHours(),
|
||||
m = date.getMinutes(),
|
||||
s = date.getSeconds();
|
||||
if (h < 10) {h = "0" + h;}
|
||||
if (m < 10) {m = "0" + m;}
|
||||
if (s < 10) {s = "0" + s;}
|
||||
|
@ -24,7 +24,7 @@
|
||||
<p class="lnk-option">
|
||||
<a id="clip-button" href="#">Copy To Clipboard</a> |
|
||||
<a id="short-url" href="#">Get short url</a> |
|
||||
<a id="email-link" href="mailto:friend@example.com?body=http://127.0.0.1:8000/paste/782ba6ca3cc095151ec07f3bf2d26422c57067b1%23Z9FJZAALt59KXDP5JAppEL3kUWFE2tgAFyi5bnYydyY=">Email this</a>
|
||||
<a id="email-link" href="#">Email this</a>
|
||||
|
||||
<span class="paste-option btn-group top">
|
||||
<button class="btn btn-clone"><i class="icon-camera"></i> Clone</button>
|
||||
|
Loading…
Reference in New Issue
Block a user