mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
Changing the async client slugify bit to only do its thing if the slug input is empty
--HG-- branch : dev
This commit is contained in:
@@ -18,8 +18,10 @@
|
|||||||
//pull slug input from tab order
|
//pull slug input from tab order
|
||||||
$("#<%: Html.FieldIdFor(m=>m.Slug)%>").attr("tabindex",-1);
|
$("#<%: Html.FieldIdFor(m=>m.Slug)%>").attr("tabindex",-1);
|
||||||
$("#<%: Html.FieldIdFor(m=>m.Title)%>").blur(function(){
|
$("#<%: Html.FieldIdFor(m=>m.Title)%>").blur(function(){
|
||||||
|
var slug = $("#<%:Html.FieldIdFor(m=>m.Slug)%>");
|
||||||
|
if (slug.val()) { return true; }
|
||||||
$(this).slugify({
|
$(this).slugify({
|
||||||
target:$("#<%:Html.FieldIdFor(m=>m.Slug)%>"),
|
target:slug,
|
||||||
url:"<%: Url.Action("Slugify","Item",new RouteValueDictionary{{"Area","Routable"}})%>",
|
url:"<%: Url.Action("Slugify","Item",new RouteValueDictionary{{"Area","Routable"}})%>",
|
||||||
contentType:"<%: Model.ContentType %>",
|
contentType:"<%: Model.ContentType %>",
|
||||||
id:"<%=Model.Id %>" <%if (Model.ContainerId != null) { %>,
|
id:"<%=Model.Id %>" <%if (Model.ContainerId != null) { %>,
|
||||||
|
Reference in New Issue
Block a user