Merge pull request #3777 from davecocoa/feature/3775-fix-tags-on-profile-edit
fix the tag handling on the profiles edit page
This commit is contained in:
commit
9d954b1a60
2 changed files with 3 additions and 1 deletions
|
|
@ -5,6 +5,7 @@
|
|||
* Removed unused stuff [#3714](https://github.com/diaspora/diaspora/pull/3714), [#3754](https://github.com/diaspora/diaspora/pull/3754)
|
||||
* Last post link isn't displayed anymore if there are no visible posts [#3750](https://github.com/diaspora/diaspora/issues/3750)
|
||||
* Ported tag followings to backbone [#3713](https://github.com/diaspora/diaspora/pull/3713)
|
||||
* fixed tags on the profiles page (broken by the change of server side response in the switch to backbone) [#3775](https://github.com/diaspora/diaspora/pull/3777)
|
||||
* Extracted configuration system to a gem.
|
||||
* Made number of unicorn workers configurable.
|
||||
* Made loading of the configuration environment independent of Rails.
|
||||
|
|
|
|||
|
|
@ -12,10 +12,11 @@
|
|||
|
||||
autocompleteInput.autoSuggest("#{tags_path}", {
|
||||
selectedItemProp: "name",
|
||||
selectedValuesProp: "name",
|
||||
searchObjProps: "name",
|
||||
asHtmlID: "tags",
|
||||
neverSubmit: true,
|
||||
retriveLimit: 10,
|
||||
retrieveLimit: 10,
|
||||
minChars: 2,
|
||||
keyDelay: 200,
|
||||
startText: "",
|
||||
|
|
|
|||
Loading…
Reference in a new issue