+panel_hooks = {
+
+ load: function() {
+ var self = this;
+ self.form = $('form', self.contentDiv);
+ $("input[type='text'], textarea", self.form).each(function() {
+ $(this).change(function(event) {
+ self.contentDiv.trigger('panel:contentChanged', self);
+ });
+ });
+ },
+ saveInfo: function(saveInfo) {
+ var myInfo = {
+ url: "{% url file_dc fpath %}",
+ postData: $('form', this.contentDiv).serialize()
+ };
+ $.extend(saveInfo, myInfo);
+ }
+};