aboutsummaryrefslogtreecommitdiffstats
path: root/core/js/placeholder.js
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2013-10-24 19:27:33 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2013-10-24 19:27:33 +0200
commit66813e9df6eb96a960462a3dc8dbe1de4df5314c (patch)
tree69985a6adc77d66a5289e321172231f89849a4ec /core/js/placeholder.js
parent54e0f1d739b4b3820cafafca039a3524d3dd28ba (diff)
parent3917d18980638e86f5cce9242adeded0ca760260 (diff)
downloadnextcloud-server-66813e9df6eb96a960462a3dc8dbe1de4df5314c.tar.gz
nextcloud-server-66813e9df6eb96a960462a3dc8dbe1de4df5314c.zip
Merge branch 'master' into fix-language-detection
Diffstat (limited to 'core/js/placeholder.js')
-rw-r--r--core/js/placeholder.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/js/placeholder.js b/core/js/placeholder.js
index ee2a8ce84c4..47cff780d2f 100644
--- a/core/js/placeholder.js
+++ b/core/js/placeholder.js
@@ -30,7 +30,7 @@
*
* And call this from Javascript:
*
- * $('#albumart').placeholder('The Album Title');
+ * $('#albumart').imageplaceholder('The Album Title');
*
* Which will result in:
*
@@ -38,7 +38,7 @@
*
* You may also call it like this, to have a different background, than the seed:
*
- * $('#albumart').placeholder('The Album Title', 'Album Title');
+ * $('#albumart').imageplaceholder('The Album Title', 'Album Title');
*
* Resulting in:
*
@@ -47,7 +47,7 @@
*/
(function ($) {
- $.fn.placeholder = function(seed, text) {
+ $.fn.imageplaceholder = function(seed, text) {
// set optional argument "text" to value of "seed" if undefined
text = text || seed;