Removed unnecessary code from admin_media/js
git-svn-id: http://code.djangoproject.com/svn/django/trunk@450 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
65f7e142e4
commit
5144a60efc
|
@ -51,7 +51,6 @@ var SelectBox = {
|
||||||
},
|
},
|
||||||
add_to_cache: function(id, option) {
|
add_to_cache: function(id, option) {
|
||||||
SelectBox.cache[id].push({ value: option.value, text: option.text, displayed: 1 });
|
SelectBox.cache[id].push({ value: option.value, text: option.text, displayed: 1 });
|
||||||
// SelectBox.sort(id) // Commented out for performance. Can this be deleted?
|
|
||||||
},
|
},
|
||||||
cache_contains: function(id, value) {
|
cache_contains: function(id, value) {
|
||||||
// Check if an item is contained in the cache
|
// Check if an item is contained in the cache
|
||||||
|
|
|
@ -3,24 +3,9 @@ SelectFilter2 - Turns a multiple-select box into a filter interface.
|
||||||
|
|
||||||
Different than SelectFilter because this is coupled to the admin framework.
|
Different than SelectFilter because this is coupled to the admin framework.
|
||||||
|
|
||||||
Requires SelectBox.js and addevent.js.
|
Requires core.js, SelectBox.js and addevent.js.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// quickElement(tagType, parentReference, textInChildNode, [, attribute, attributeValue ...]);
|
|
||||||
function quickElement() {
|
|
||||||
var obj = document.createElement(arguments[0]);
|
|
||||||
if (arguments[2] != '' && arguments[2] != null) {
|
|
||||||
var textNode = document.createTextNode(arguments[2]);
|
|
||||||
obj.appendChild(textNode);
|
|
||||||
}
|
|
||||||
var len = arguments.length;
|
|
||||||
for (var i = 3; i < len; i += 2) {
|
|
||||||
obj.setAttribute(arguments[i], arguments[i+1]);
|
|
||||||
}
|
|
||||||
arguments[1].appendChild(obj);
|
|
||||||
return obj;
|
|
||||||
}
|
|
||||||
|
|
||||||
function findForm(node) {
|
function findForm(node) {
|
||||||
// returns the node of the form containing the given node
|
// returns the node of the form containing the given node
|
||||||
if (node.tagName.toLowerCase() != 'form') {
|
if (node.tagName.toLowerCase() != 'form') {
|
||||||
|
|
Loading…
Reference in New Issue