From 94960c162a0f39de5bb4284ce2a700cd45b13baa Mon Sep 17 00:00:00 2001 From: tamtakoe Date: Mon, 20 May 2013 11:09:05 +0300 Subject: [PATCH] fix(sortable.js):add "onStop" in vars --- src/sortable.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sortable.js b/src/sortable.js index ee31e9f..7c39e53 100644 --- a/src/sortable.js +++ b/src/sortable.js @@ -8,7 +8,7 @@ angular.module('ui.sortable', []).value('uiSortableConfig',{}).directive('uiSort return { require: '?ngModel', link: function(scope, element, attrs, ngModel) { - var onReceive, onRemove, onStart, onUpdate, opts; + var onReceive, onRemove, onStart, onStop, onUpdate, opts; opts = angular.extend({}, uiSortableConfig, scope.$eval(attrs.uiSortable));