silverstripe-dms/javascript/DMSDocumentAddExistingField.js

9 lines
213 B
JavaScript
Raw Normal View History

2012-08-07 03:44:42 +02:00
(function($) {
$('.document-add-existing .document-autocomplete').entwine({
onmatch: function() {
$(this).autocomplete({
source: 'admin/pages/adddocument/documentautocomplete'
});
}
});
}(jQuery));