summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorGeorg Ehrke <ownclouddev@georgswebsite.de>2011-11-12 15:09:37 +0100
committerGeorg Ehrke <ownclouddev@georgswebsite.de>2011-11-12 15:09:37 +0100
commite5a3ab8aad0b0deb312a97acb3fc808b497b0544 (patch)
tree5f7074a651b979cd0c9659de3f8d3fb6066fa37b /core/js
parent03d9fab3c0cf3a3c50259d6a33439a998628b45c (diff)
parentef124c3e21ceae49f0f704589a833d1208d99c65 (diff)
downloadnextcloud-server-e5a3ab8aad0b0deb312a97acb3fc808b497b0544.tar.gz
nextcloud-server-e5a3ab8aad0b0deb312a97acb3fc808b497b0544.zip
Merge branch 'master' into fullcalendar
Diffstat (limited to 'core/js')
-rw-r--r--core/js/js.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js
index 9e814ca0729..5846d289880 100644
--- a/core/js/js.js
+++ b/core/js/js.js
@@ -365,7 +365,7 @@ $(document).ready(function(){
$('.jp-controls .jp-previous').tipsy({gravity:'nw', fade:true, live:true});
$('.jp-controls .jp-next').tipsy({gravity:'n', fade:true, live:true});
$('.password .action').tipsy({gravity:'se', fade:true, live:true});
- $('.file_upload_button_wrapper').tipsy({gravity:'e', fade:true});
+ $('.file_upload_button_wrapper').tipsy({gravity:'w', fade:true});
$('.selectedActions a.delete').tipsy({gravity: 'se', fade:true, live:true});
$('.selectedActions a').tipsy({gravity:'s', fade:true, live:true});
$('#headerSize').tipsy({gravity:'s', fade:true, live:true});
@@ -401,3 +401,10 @@ if (!Array.prototype.map){
return res;
};
}
+
+/**
+ * Filter Jquery selector by attribute value
+ **/
+$.fn.filterAttr = function(attr_name, attr_value) {
+ return this.filter(function() { return $(this).attr(attr_name) === attr_value; });
+};