Skip to content

Commit

Permalink
Correct URLs in .js
Browse files Browse the repository at this point in the history
  • Loading branch information
animaux committed Apr 3, 2017
1 parent c2dd756 commit 467e348
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
## Association UI for Symphony: Selector (Materie)

Fork from »Association UI: Selector« with different UI design. Needs to be used together with [Association UI: Editor (Materie)](https://github.com/animaux/association_ui_editor)!
Fork from »Association UI: Selector« with different UI design. Needs to be used together with [Association UI: Editor (Materie)](https://github.com/animaux/association_ui_editor_materie)!

![Interface preview](https://cloud.githubusercontent.com/assets/446874/13914883/96728666-ef51-11e5-8125-347aea883526.png)

Expand Down
8 changes: 4 additions & 4 deletions assets/aui.selector.publish.js
Expand Up @@ -134,7 +134,7 @@
}

$.ajax({
url: Symphony.Context.get('root') + '/symphony/extension/association_ui_selector/get/',
url: Symphony.Context.get('root') + '/symphony/extension/association_ui_selector_materie/get/',
data: {
entry_id: entryId,
field_id: fieldId
Expand All @@ -160,7 +160,7 @@
id = item.data('value');

$.ajax({
url: Symphony.Context.get('root') + '/symphony/extension/association_ui_selector/query/',
url: Symphony.Context.get('root') + '/symphony/extension/association_ui_selector_materie/query/',
data: {
field_id: fieldId,
query: item.data('value'),
Expand All @@ -179,7 +179,7 @@

var fetchItem = function(entryId, fieldId, numeric, callback) {
$.ajax({
url: Symphony.Context.get('root') + '/symphony/extension/association_ui_selector/get/',
url: Symphony.Context.get('root') + '/symphony/extension/association_ui_selector_materie/get/',
data: {
entry_id: entryId,
field_id: fieldId
Expand All @@ -199,7 +199,7 @@

var fetchOptions = function(fieldId, query, limit, numeric, callback) {
$.ajax({
url: Symphony.Context.get('root') + '/symphony/extension/association_ui_selector/query/',
url: Symphony.Context.get('root') + '/symphony/extension/association_ui_selector_materie/query/',
data: {
field_id: fieldId,
query: encodeURIComponent(query),
Expand Down

0 comments on commit 467e348

Please sign in to comment.