diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-29 20:10:07 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-09-29 20:10:07 +0200 |
commit | 2e1e283592e366f7a43a1a405e57520d0be13ff0 (patch) | |
tree | a1810af1589d536c7eac5ba4885298ea31af4cb0 /core/js/js.js | |
parent | 1b59003d6df7ddf97ff71cc651b4fc064f8ebc17 (diff) | |
parent | 5462e199d391a1e4c9858bfd8444366a1047fa7f (diff) | |
download | nextcloud-server-2e1e283592e366f7a43a1a405e57520d0be13ff0.tar.gz nextcloud-server-2e1e283592e366f7a43a1a405e57520d0be13ff0.zip |
Merge branch 'appframework-master' into activities-api
Conflicts:
lib/public/iservercontainer.php
Diffstat (limited to 'core/js/js.js')
-rw-r--r-- | core/js/js.js | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/core/js/js.js b/core/js/js.js index c09f80369f9..b7f7ff1ac15 100644 --- a/core/js/js.js +++ b/core/js/js.js @@ -723,11 +723,17 @@ $(document).ready(function(){ } }else if(event.keyCode===27){//esc OC.search.hide(); + if (FileList && typeof FileList.unfilter === 'function') { //TODO add hook system + FileList.unfilter(); + } }else{ var query=$('#searchbox').val(); if(OC.search.lastQuery!==query){ OC.search.lastQuery=query; OC.search.currentResult=-1; + if (FileList && typeof FileList.filter === 'function') { //TODO add hook system + FileList.filter(query); + } if(query.length>2){ OC.search(query); }else{ @@ -840,6 +846,13 @@ function formatDate(date){ return $.datepicker.formatDate(datepickerFormatDate, date)+' '+date.getHours()+':'+((date.getMinutes()<10)?'0':'')+date.getMinutes(); } +// taken from http://stackoverflow.com/questions/1403888/get-url-parameter-with-jquery +function getURLParameter(name) { + return decodeURI( + (RegExp(name + '=' + '(.+?)(&|$)').exec(location.search) || [, null])[1] + ); +} + /** * takes an absolute timestamp and return a string with a human-friendly relative date * @param int a Unix timestamp @@ -906,7 +919,7 @@ OC.set=function(name, value) { * @param {type} start * @param {type} end */ -$.fn.selectRange = function(start, end) { +jQuery.fn.selectRange = function(start, end) { return this.each(function() { if (this.setSelectionRange) { this.focus(); @@ -922,6 +935,15 @@ $.fn.selectRange = function(start, end) { }; /** + * check if an element exists. + * allows you to write if ($('#myid').exists()) to increase readability + * @link http://stackoverflow.com/questions/31044/is-there-an-exists-function-for-jquery + */ +jQuery.fn.exists = function(){ + return this.length > 0; +} + +/** * Calls the server periodically every 15 mins to ensure that session doesnt * time out */ |