Янковиц,
убрал лишнее ...
// инициализация плагина
init: function f(options, args) {
var options = $.extend({}, defaults, options);
return this.each(function() {
var $this = $(this);
if (!$this.data("sSlider")) {
$this.data("sSlider", options);
$("[data-direction]", $this).on("mousedown touchend", function(e) {
methods.move($this, $(this).data("direction"), options);
});
}
});
},