summaryrefslogtreecommitdiffstats
path: root/js/public/app.js
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-15 11:11:20 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-15 11:11:20 +0200
commit8553c92dd9746d4c6d4390544bcb4c66167173ce (patch)
treeba5ab92f844b43555920749f6bd8d345e399dfd8 /js/public/app.js
parent516063c1e1d1d8a85dca7b670e279f71c5685848 (diff)
remove opacity for feedcounter, fix #57
Diffstat (limited to 'js/public/app.js')
-rw-r--r--js/public/app.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/js/public/app.js b/js/public/app.js
index 826ed2891..ea1974247 100644
--- a/js/public/app.js
+++ b/js/public/app.js
@@ -342,19 +342,6 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
return _this._$scope.addNewFolder = true;
}
};
- this._$scope.getOpacity = function(number) {
- var opacity;
-
- number = parseInt(number, 10);
- opacity = number / 180;
- if (opacity < 0.3) {
- opacity = 0.3;
- }
- if (opacity > 1) {
- opacity = 1;
- }
- return opacity;
- };
this._$scope.$on('moveFeedToFolder', function(scope, data) {
return _this._feedBl.move(data.feedId, data.folderId);
});