mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
support multiple uploads, fix go-bindata generation via makefile
This commit is contained in:
parent
a58f4ca346
commit
c7e6297077
2
Makefile
2
Makefile
@ -10,10 +10,12 @@ build: server/bindata.go
|
|||||||
|
|
||||||
STATICFILES := $(wildcard static/*)
|
STATICFILES := $(wildcard static/*)
|
||||||
TEMPLATES := $(wildcard templates/*)
|
TEMPLATES := $(wildcard templates/*)
|
||||||
|
.PHONY: server/bindata.go
|
||||||
server/bindata.go: $(STATICFILES) $(TEMPLATES)
|
server/bindata.go: $(STATICFILES) $(TEMPLATES)
|
||||||
go-bindata -pkg server -tags '!debug' -o server/bindata.go static/... templates/...
|
go-bindata -pkg server -tags '!debug' -o server/bindata.go static/... templates/...
|
||||||
go fmt
|
go fmt
|
||||||
|
|
||||||
|
.PHONY: server/bindata-debug.go
|
||||||
server/bindata-debug.go: $(STATICFILES) $(TEMPLATES)
|
server/bindata-debug.go: $(STATICFILES) $(TEMPLATES)
|
||||||
go-bindata -pkg server -tags 'debug' -o server/bindata-debug.go -debug static/... templates/...
|
go-bindata -pkg server -tags 'debug' -o server/bindata-debug.go -debug static/... templates/...
|
||||||
go fmt
|
go fmt
|
||||||
|
1332
server/bindata.go
1332
server/bindata.go
File diff suppressed because one or more lines are too long
@ -371,9 +371,11 @@ function onUploadFinished(file) {
|
|||||||
if (file.type.startsWith("image")) {
|
if (file.type.startsWith("image")) {
|
||||||
prefix = '!';
|
prefix = '!';
|
||||||
}
|
}
|
||||||
|
console.log(file.xhr);
|
||||||
var extraText = prefix+'['+file.xhr.getResponseHeader("Location").split('filename=')[1]+'](' +
|
var extraText = prefix+'['+file.xhr.getResponseHeader("Location").split('filename=')[1]+'](' +
|
||||||
file.xhr.getResponseHeader("Location") +
|
file.xhr.getResponseHeader("Location") +
|
||||||
')';
|
')\n\n';
|
||||||
|
|
||||||
|
|
||||||
$('#userInput').val(
|
$('#userInput').val(
|
||||||
textBefore +
|
textBefore +
|
||||||
@ -382,7 +384,7 @@ function onUploadFinished(file) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
// Select the newly-inserted link
|
// Select the newly-inserted link
|
||||||
$('#userInput').prop('selectionStart', cursorPos);
|
$('#userInput').prop('selectionStart', cursorPos + extraText.length);
|
||||||
$('#userInput').prop('selectionEnd', cursorPos + extraText.length);
|
$('#userInput').prop('selectionEnd', cursorPos + extraText.length);
|
||||||
$('#userInput').trigger('keyup'); // trigger a save
|
$('#userInput').trigger('keyup'); // trigger a save
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user