From 3926f3e341f12d2aa54ed5400b4e5846458f1d49 Mon Sep 17 00:00:00 2001 From: Alexander Ebert Date: Fri, 16 Mar 2012 17:11:12 +0100 Subject: [PATCH] Fixed WCF.Sortable.List (it's now a Class object) --- wcfsetup/install/files/js/WCF.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wcfsetup/install/files/js/WCF.js b/wcfsetup/install/files/js/WCF.js index 1a21cfa85a..3d2002ca62 100644 --- a/wcfsetup/install/files/js/WCF.js +++ b/wcfsetup/install/files/js/WCF.js @@ -4223,9 +4223,10 @@ WCF.Sortable = {}; * * @param string containerID * @param string className + * @param integer offset + * @param object options */ -WCF.Sortable.List = function(containerID, className) { this.init(containerID, className); }; -WCF.Sortable.List.prototype = { +WCF.Sortable.List = Class.extend({ /** * action class name * @var string @@ -4367,7 +4368,7 @@ WCF.Sortable.List.prototype = { this._notification.show(); } -}; +}); /** * Provides a toggleable sidebar. -- 2.20.1