Skip to content
This repository has been archived by the owner on Dec 24, 2020. It is now read-only.

Commit

Permalink
Fix error in parameter recognition
Browse files Browse the repository at this point in the history
  • Loading branch information
janv committed Nov 28, 2011
1 parent f6d35f3 commit c4956ad
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -104,7 +104,7 @@ class RestInPlaceEditor
@objectName = @objectName || res[1] if res = parent.id.match(/^(\w+)_(\d+)$/i)

@url = @$element.attr("data-url") || @url || document.location.pathname
@formType = @$element.attr("data-formtype") || @formtype || "input"
@formType = @$element.attr("data-formtype") || @formType || "input"
@objectName = @$element.attr("data-object") || @objectName
@attributeName = @$element.attr("data-attribute") || @attributeName

Expand Down

0 comments on commit c4956ad

Please sign in to comment.