diff --git a/js/full_tags.php b/js/full_tags.php new file mode 100644 index 00000000..5bba4f89 --- /dev/null +++ b/js/full_tags.php @@ -0,0 +1,30 @@ + + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +// Set the content type to Javascript +header("Content-type: text/javascript"); + +// Disallow caching +header("Cache-Control: no-cache, must-revalidate"); +header("Expires: Sat, 26 Jul 1997 05:00:00 GMT"); + +$qtags = OC_Bookmarks_Bookmarks::findTags(array(), 0, 400); +$tags = array(); +foreach($qtags as $tag) { + $tags[] = $tag['tag']; +} + +?> +var fullTags = ; +$(document).ready(function() { + $('body').bookmark_dialog({ + 'on_success': function(){ + self.close(); + } + }); +}); \ No newline at end of file diff --git a/templates/addBm.php b/templates/addBm.php index 6457c551..987b1bc7 100644 --- a/templates/addBm.php +++ b/templates/addBm.php @@ -1,13 +1,7 @@