Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         $scope.showChannelsList = function (tariff_id) {
  2.             document.getElementById('pre').style.display = 'block';
  3.             if (tariff_id === 32) {
  4.                 $scope.max = true;
  5.                 document.getElementById('card_' + 31).style.border = 'none';
  6.                 document.getElementById('style-13').style.overflow = 'scroll';
  7.                 document.getElementById('style-13').style.overflowX = 'hidden';
  8.                 document.getElementById('card_' + tariff_id).style.border = '1px solid black';
  9.                 $scope.channels = $scope.tariffs[1].channels;
  10.             } else {
  11.                 $scope.max = false;
  12.                 document.getElementById('card_' + tariff_id).style.border = '1px solid black';
  13.                 document.getElementById('style-13').style.overflow = 'scroll';
  14.                 document.getElementById('style-13').style.overflowX = 'hidden';
  15.                 document.getElementById('card_' + 32).style.border = 'none';
  16.                 $scope.channels = $scope.tariffs[0].channels;
  17.             }
  18.             document.getElementById('pre').style.display = 'none';
  19.         };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement