Skip to content

Commit

Permalink
Updated bundle
Browse files Browse the repository at this point in the history
  • Loading branch information
sourishkrout committed Sep 18, 2018
1 parent 73aa189 commit 601d825
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions services/nodevoto-web/webapp/dist/index_bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -41661,7 +41661,7 @@ var Vote = function (_React$Component) {
var _this4 = this;

return _lodash2.default.map(gifs, function (gif, i) {
var url = gif.url.replace("https://media2.giphy.com/media/", "gifs/");
var url = 'gifs/' + gif.url.substr(gif.url.indexOf(".giphy.com/media/") + 17);
return _react2.default.createElement(
'div',
{
Expand Down Expand Up @@ -41801,7 +41801,7 @@ var Vote = function (_React$Component) {
containerClass: 'background'
});
} else {
var url = this.state.selectedGif.url.replace("https://media2.giphy.com/media/", "gifs/");
var url = 'gifs/' + this.state.selectedGif.url.substr(this.state.selectedGif.url.indexOf(".giphy.com/media/") + 17);
var _contents2 = _react2.default.createElement(
'div',
null,
Expand Down

0 comments on commit 601d825

Please sign in to comment.