TheDesk Mio (15.7.0 macOS)
This commit is contained in:
parent
f42f6e2572
commit
16649e6913
|
@ -179,7 +179,7 @@ var tlid=0;
|
||||||
</div>
|
</div>
|
||||||
<div class="small-menu">
|
<div class="small-menu">
|
||||||
<a href="index.html" class="nex mize waves-effect">
|
<a href="index.html" class="nex mize waves-effect">
|
||||||
<i class="material-icons nex" title="スーパーリロード" data-trans-title="reload">refresh</i>
|
<i class="material-icons nex" title="スーパーリロード(F5/⌘+R)" data-trans-title="reload">refresh</i>
|
||||||
<span class="side-label" data-trans="reload">再読込</span>
|
<span class="side-label" data-trans="reload">再読込</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -156,4 +156,11 @@ function progshow(e) {
|
||||||
$("#imgup").text("処理中");
|
$("#imgup").text("処理中");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var electron = require("electron");
|
||||||
|
var ipc = electron.ipcRenderer;
|
||||||
|
ipc.on('reload', function (event, arg) {
|
||||||
|
location.reload();
|
||||||
|
})
|
||||||
|
|
|
@ -115,7 +115,7 @@ function parseColumn() {
|
||||||
key + '">On</span></a>メディアフィルター<br><a onclick="cardToggle(' + key +
|
key + '">On</span></a>メディアフィルター<br><a onclick="cardToggle(' + key +
|
||||||
')" class="setting nex"><i class="material-icons waves-effect nex" title="リンクの解析を切り替え(OFFで制限を回避出来る場合があります)">link</i><span id="sta-card-' +
|
')" class="setting nex"><i class="material-icons waves-effect nex" title="リンクの解析を切り替え(OFFで制限を回避出来る場合があります)">link</i><span id="sta-card-' +
|
||||||
key + '">On</span></a>リンク解析<br>TLヘッダーの色<br><div id="picker_'+key+'" class="color-picker"></div></div><div class="tl-box" tlid="' + key + '"><div id="timeline_' + key +
|
key + '">On</span></a>リンク解析<br>TLヘッダーの色<br><div id="picker_'+key+'" class="color-picker"></div></div><div class="tl-box" tlid="' + key + '"><div id="timeline_' + key +
|
||||||
'" class="tl" tlid="' + key + '"'+notf_attr+'><div style="text-align:center">[ここにトゥートはありません。]<br>F5で再読込できます。</div></div></div></div>';
|
'" class="tl" tlid="' + key + '"'+notf_attr+'><div style="text-align:center">[ここにトゥートはありません。]<br>F5/⌘+Rで再読込できます。</div></div></div></div>';
|
||||||
$("#timeline-container").append(html);
|
$("#timeline-container").append(html);
|
||||||
localStorage.removeItem("pool_" + key);
|
localStorage.removeItem("pool_" + key);
|
||||||
if (acct.data) {
|
if (acct.data) {
|
||||||
|
|
|
@ -132,6 +132,11 @@ function createWindow() {
|
||||||
accelerator: 'Alt+Command+I',
|
accelerator: 'Alt+Command+I',
|
||||||
click: function() { mainWindow.toggleDevTools(); }
|
click: function() { mainWindow.toggleDevTools(); }
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
label: '再読み込み',
|
||||||
|
accelerator: 'CmdOrCtrl+R',
|
||||||
|
click: function() { mainWindow.webContents.send('reload', ""); }
|
||||||
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in New Issue
Block a user