Skip to content

Commit

Permalink
Merge pull request #552 from wiibaa/patch-1
Browse files Browse the repository at this point in the history
fix for showDropDown method
  • Loading branch information
Rashid Khan committed Oct 9, 2013
2 parents d4ce99b + 37527ba commit fe7f881
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/controllers/dashLoader.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -127,4 +127,4 @@ function (angular, _) {

});

});
});

0 comments on commit fe7f881

Please sign in to comment.