diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-03-27 01:09:28 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-03-27 12:30:20 +0200 |
commit | 0a07e5fdaabfc5652ec96b4179e2c9433ab42002 (patch) | |
tree | a42f9d74995b45f7b2a2a74c23dcb943beb70466 /core/js | |
parent | c92fc9bf651e79aa44803eeeed1d16499a5f08e6 (diff) | |
download | nextcloud-server-0a07e5fdaabfc5652ec96b4179e2c9433ab42002.tar.gz nextcloud-server-0a07e5fdaabfc5652ec96b4179e2c9433ab42002.zip |
Added some documentation.
Diffstat (limited to 'core/js')
-rw-r--r-- | core/js/oc-vcategories.txt | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/core/js/oc-vcategories.txt b/core/js/oc-vcategories.txt index 76d4245f5eb..31216f80bd3 100644 --- a/core/js/oc-vcategories.txt +++ b/core/js/oc-vcategories.txt @@ -17,7 +17,7 @@ Set the app specific values in your javascript file. This is what I've used for OCCategories.app = 'contacts'; OCCategories.changed = Contacts.UI.Card.categoriesChanged; -If OCCategories.changed point is set that function will be called each time the categories have been changed +If OCCategories.changed is set that function will be called each time the categories have been changed in the editor (add/delete/rescan) to allow the app to update the UI accordingly. The only argument to the function is an array of the updated categories e.g.: @@ -25,4 +25,9 @@ OCCategories.changed = function(categories) { for(var category in categories) { console.log(categories[category]); } -}
\ No newline at end of file +} + +To show the categories editor call: + + OCCategories.edit() + |