소스 검색

Merge pull request #552 from wiibaa/patch-1

fix for showDropDown method
Rashid Khan 12 년 전
부모
커밋
fe7f881622
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      src/app/controllers/dashLoader.js

+ 2 - 2
src/app/controllers/dashLoader.js

@@ -29,7 +29,7 @@ function (angular, _) {
         return (_l.load_elasticsearch || _l.load_gist || _l.load_local);
       }
       if(type === 'save') {
-        return (_l.save_elasticsearch || _l.save_gist || _l.local_local || _l.save_default);
+        return (_l.save_elasticsearch || _l.save_gist || _l.save_local || _l.save_default);
       }
       if(type === 'share') {
         return (_l.save_temp);
@@ -127,4 +127,4 @@ function (angular, _) {
 
   });
 
-});
+});