Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
bibliossimo
opacce
Commits
14246b13
Commit
14246b13
authored
Dec 22, 2017
by
Laurent
Browse files
dev #56107 refactoring
parent
eb6ead30
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
8 deletions
+4
-8
library/ZendAfi/View/Helper/TagObjetsImgProperties.php
library/ZendAfi/View/Helper/TagObjetsImgProperties.php
+4
-8
No files found.
library/ZendAfi/View/Helper/TagObjetsImgProperties.php
View file @
14246b13
...
...
@@ -44,13 +44,9 @@ class ZendAfi_View_Helper_TagObjetsImgProperties
$script
=
'$("select[name=\'style_liste\']").change(
function() {
$.ajax({
url: "'
.
$update_url
.
'/style_liste/" + $("#style_liste").val(),
dataType: "json",
success: function(data) {
var div = data["content"];
$("#objet_props").html(div);
}
$.getJSON("'
.
$update_url
.
'/style_liste/" + $("#style_liste").val(),
function(data) {
$("#objet_props").empty().append(data["content"]);
});
});'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment