角度js随着弹出窗口递增递减

时间:2013-11-18 08:54:00

标签: angularjs

在angular.js上完成了一些代码,用于在点击中间字段时创建以下自定义组件Bump Up / Bump Down中间菜单容器。

目前中间字段工作正常+ - 不起作用,我们必须使用它来提升/缩小相同的值。

提前。Code link

1 个答案:

答案 0 :(得分:1)

如果我清楚地了解您的要求,我已经更新了代码。见here

添加了一项功能

 var findIndex = function(currentColor, colorArray){
       var index = 0;
       for(var i = 0; i < colorArray.length; i++){
         if(currentColor.name == colorArray[i].name){
           index = i;
           return index;
         }
       }

       return index;

      }

减少或增加

 scope.decrementclick = function() {
       var index = findIndex(scope.currentColor, scope.colors);
       if(index > 0){
         index--;
       }
       scope.selectColor(scope.colors[index]);

         //alert("down clicked");
     };