+ },
+
+ $.fn.enableAutoscroll = function() {
+ $(this).data('autoscroll:enabled', true);
+ },
+
+ $.fn.disableAutoscroll = function() {
+ $(this).data('autoscroll:enabled', false);
+ },
+
+ $.fn.toggleAutoscroll = function() {
+ $(this).data('autoscroll:enabled', !$(this).data('autoscroll:enabled'));
+ }