mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
MINOR Removed unused _AJAX_LOADING global from LeftAndMain.js javascript
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92695 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
bf6ff4addb
commit
42a5de8536
@ -138,6 +138,94 @@ var ss_MainLayout;
|
||||
};
|
||||
});
|
||||
|
||||
/**
|
||||
* @class Input validation on the URLSegment field
|
||||
* @name ss.EditForm.URLSegment
|
||||
*/
|
||||
$('#Form_EditForm input[name=URLSegment]').concrete('ss', function($){
|
||||
return/** @lends ss.EditForm.URLSegment */{
|
||||
|
||||
FilterRegex: /[^A-Za-z0-9-]+/,
|
||||
|
||||
ValidationMessage: 'URLs can only be made up of letters, digits and hyphens.',
|
||||
|
||||
MaxLength: 50,
|
||||
|
||||
onmatch : function() {
|
||||
var self = this;
|
||||
|
||||
// intercept change event, do our own writing
|
||||
this.bind('change', function(e) {
|
||||
if(!self.validate()) {
|
||||
jQuery.noticeAdd(self.ValidationMessage());
|
||||
}
|
||||
self.val(self.suggestValue(e.target.value));
|
||||
return false;
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Return a value matching the criteria.
|
||||
*
|
||||
* @param {String} val
|
||||
* @return val
|
||||
*/
|
||||
suggestValue: function(val) {
|
||||
// TODO Do we want to enforce lowercasing in URLs?
|
||||
return val.substr(0, this.MaxLength()).replace(this.FilterRegex(), '').toLowerCase();
|
||||
},
|
||||
|
||||
validate: function() {
|
||||
return (
|
||||
this.val().length > this.MaxLength()
|
||||
|| this.val().match(this.FilterRegex())
|
||||
);
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
/**
|
||||
* @class Input validation on the Title field
|
||||
* @name ss.EditForm.Title
|
||||
*/
|
||||
$('#Form_EditForm input[name=Title]').concrete('ss', function($){
|
||||
return/** @lends ss.EditForm.Title */{
|
||||
|
||||
onmatch : function() {
|
||||
var self = this;
|
||||
|
||||
this.bind('change', function(e) {
|
||||
self.updateURLSegment(jQuery('#Form_EditForm input[name=URLSegment]'));
|
||||
// TODO We should really user-confirm these changes
|
||||
self.parents('form').find('input[name=MetaTitle], input[name=MenuTitle]').val(self.val());
|
||||
});
|
||||
},
|
||||
|
||||
updateURLSegment: function(field) {
|
||||
if(!field || !field.length) return;
|
||||
|
||||
// TODO language/logic coupling
|
||||
var isNew = this.val().indexOf("new") == 0;
|
||||
var suggestion = field.concrete('ss').suggestValue(this.val());
|
||||
var confirmMessage = ss.i18n.sprintf(
|
||||
ss.i18n._t(
|
||||
'UPDATEURL.CONFIRM',
|
||||
'Would you like me to change the URL to:\n\n'
|
||||
+ '%s/\n\nClick Ok to change the URL, '
|
||||
+ 'click Cancel to leave it as:\n\n%s'
|
||||
),
|
||||
suggestion,
|
||||
field.val()
|
||||
);
|
||||
|
||||
// don't ask for replacement if record is considered 'new' as defined by its title
|
||||
if(isNew || (suggestion != field.val() && confirm(confirmMessage))) {
|
||||
field.val(suggestion);
|
||||
}
|
||||
}
|
||||
};
|
||||
});
|
||||
|
||||
/**
|
||||
* @class ParentID field combination - mostly toggling between
|
||||
* the two radiobuttons and setting the hidden "ParentID" field
|
||||
|
@ -291,9 +291,6 @@
|
||||
|
||||
|
||||
|
||||
var _AJAX_LOADING = false;
|
||||
|
||||
|
||||
// Event.observe(window, 'beforeunload', LeftAndMain_window_unload);
|
||||
|
||||
/**
|
||||
|
@ -201,7 +201,6 @@ TreeNodeAPI.prototype = {
|
||||
selectTreeNode : function() {
|
||||
var url = jQuery(this).find('a').attr('href');
|
||||
if(url && url != '#') {
|
||||
_AJAX_LOADING = true;
|
||||
if($('sitetree').notify('SelectionChanged', this)) {
|
||||
this.getPageFromServer();
|
||||
}
|
||||
@ -225,8 +224,6 @@ TreeNodeAPI.prototype = {
|
||||
);
|
||||
|
||||
if(xmlhttp) this.addNodeClass('loading');
|
||||
|
||||
_AJAX_LOADING = false;
|
||||
},
|
||||
ajaxExpansion : function() {
|
||||
this.addNodeClass('loading');
|
||||
|
Loading…
Reference in New Issue
Block a user