diff --git a/pandora/config.indiancinema.jsonc b/pandora/config.indiancinema.jsonc index b16d0c7c..a27ce969 100644 --- a/pandora/config.indiancinema.jsonc +++ b/pandora/config.indiancinema.jsonc @@ -725,8 +725,8 @@ }, "filters": [ {"id": "director", "sort": [{"key": "items", "operator": "-"}]}, - {"id": "language", "sort": [{"key": "items", "operator": "-"}]}, {"id": "year", "sort": [{"key": "name", "operator": "+"}]}, + {"id": "language", "sort": [{"key": "items", "operator": "-"}]}, {"id": "productioncompany", "sort": [{"key": "items", "operator": "-"}]}, {"id": "genre", "sort": [{"key": "items", "operator": "-"}]} ], diff --git a/static/js/pandora/infoView.indiancinema.js b/static/js/pandora/infoView.indiancinema.js index 90fa7e82..6afdf3fd 100644 --- a/static/js/pandora/infoView.indiancinema.js +++ b/static/js/pandora/infoView.indiancinema.js @@ -462,24 +462,6 @@ pandora.ui.infoView = function(data) { .appendTo($statistics); } - // Mainstream Score, Arthouse Score ---------------------------------------- - - ['votes', 'likes'].forEach(function(key) { - var value = data[key] || 0; - $('
') - .css({marginBottom: '4px'}) - .append( - formatKey( - key == 'votes' ? 'Mainstream Score' : 'Arthouse Score', true - ) - ) - .append( - Ox.Theme.formatColorPercent(value, 1, true) - .css({textAlign: 'right'}) - ) - .appendTo($statistics); - }); - // Duration, Aspect Ratio -------------------------------------------------- ['duration', 'aspectratio'].forEach(function(key) {