Add cache.manifest
This commit is contained in:
parent
b798d04989
commit
d4d973511b
1
cache.manifest
Normal file
1
cache.manifest
Normal file
@ -0,0 +1 @@
|
||||
CACHE MANIFEST
# 2013-03-31:v2
CACHE:
index.html
css/bootstrap.css
css/jgrowl.css
css/main.css
js/async-runner.js
js/base64.js
js/bootstrap.js
js/custo.js
js/gdrive.js
js/jquery.jgrowl.js
js/jquery.js
js/jquery.layout.js
js/jquery-ui.custom.js
js/main.js
js/Markdown.Converter.js
js/Markdown.Editor.js
js/Markdown.Sanitizer.js
img/ajax-loader.gif
img/gdrive.png
img/glyphicons-halflings.png
img/glyphicons-halflings-white.png
img/stackedit-16.png
img/stackedit-32.ico
NETWORK:
*
|
BIN
img/stackedit-32.ico
Normal file
BIN
img/stackedit-32.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 766 B |
Binary file not shown.
Before Width: | Height: | Size: 7.3 KiB |
10
index.html
10
index.html
@ -1,9 +1,9 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<html manifest="cache.manifest">
|
||||
<head>
|
||||
<title>StackEdit</title>
|
||||
<link rel="icon" href="img/stackedit-64.ico" type="image/x-icon">
|
||||
<link rel="shortcut icon" href="img/stackedit-64.ico"
|
||||
<link rel="icon" href="img/stackedit-32.ico" type="image/x-icon">
|
||||
<link rel="shortcut icon" href="img/stackedit-32.ico"
|
||||
type="image/x-icon">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<!-- Bootstrap -->
|
||||
@ -122,14 +122,14 @@
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<div id="manage-sync-list">
|
||||
<p class="msg-sync-list hide">The file "<span class="file-title"></span>"
|
||||
<p class="msg-sync-list hide">"<span class="file-title"></span>"
|
||||
is synchronized with these locations:
|
||||
</p>
|
||||
</div>
|
||||
<br class="msg-sync-list hide" />
|
||||
<p class="msg-sync-list hide muted"><b>NOTE:</b> Removing a
|
||||
synchronized location will not delete any file.</p>
|
||||
<p class="msg-no-sync hide">The file "<span class="file-title"></span>"
|
||||
<p class="msg-no-sync hide">"<span class="file-title"></span>"
|
||||
is not synchronized.
|
||||
</p>
|
||||
<p class="msg-no-sync hide muted"><b>NOTE:</b> You can add
|
||||
|
@ -868,7 +868,7 @@
|
||||
|
||||
|
||||
var text = panels.input.value;
|
||||
if (text && text == oldInputText) {
|
||||
if (text !== undefined && text == oldInputText) {
|
||||
return; // Input text hasn't changed.
|
||||
}
|
||||
else {
|
||||
|
Loading…
Reference in New Issue
Block a user