diff --git a/index.html b/index.html
index bbd0e05..237f465 100644
--- a/index.html
+++ b/index.html
@@ -87,7 +87,7 @@
- P
+ ☁
☆
✓
diff --git a/js/App.js b/js/App.js
index 3d1d674..f962593 100644
--- a/js/App.js
+++ b/js/App.js
@@ -350,9 +350,9 @@ App.prototype.showFull = function(article, slide_back) {
}
if(article.published) {
- $("#setpublished").innerHTML = "U";
+ $("#setpublished").innerHTML = "";
} else {
- $("#setpublished").innerHTML = "P";
+ $("#setpublished").innerHTML = "☁";
}
};
@@ -471,12 +471,12 @@ App.prototype.togglePublished = function() {
if(!article.published) {
article.published = true;
this.backend.setArticlePublished(article);
- $("#setpublished").innerHTML = "U";
+ $("#setpublished").innerHTML = "";
}
else {
article.published = false;
this.backend.setArticleUnpublished(article);
- $("#setpublished").innerHTML = "P";
+ $("#setpublished").innerHTML = "☁";
}
};