TheDesk Airi (ver.2)

This commit is contained in:
cutls
2018-03-13 02:41:38 +09:00
parent eacbdd2df0
commit f57b9a21ab
31 changed files with 1900 additions and 81 deletions

View File

@@ -58,6 +58,7 @@ function emojiGet(parse) {
//リストの描画
function emojiList(target) {
$("#now-emoji").text("カスタム絵文字");
var acct_id = $("#post-acct-sel").val();
var start = localStorage.getItem("emojiseek");
if (target == "next") {

View File

@@ -39,7 +39,7 @@ $("#drag").on('dragleave', function(e) {
function pimg(files) {
console.log(files);
for (i = 0; i < files.length; i++) {
var dot=files[i].path.match(/(.+)\\(.+)\.(.+)$/)[3];
var dot=files[i].path.match(/\.(.+)$/)[1];
if(dot=="bmp" || dot=="BMP"){
var electron = require("electron");
var ipc = electron.ipcRenderer;