Skip to content

Commit

Permalink
Merge branch 'hotfix/5.2.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
miesgre committed Feb 5, 2018
2 parents 5357758 + 74f0bb3 commit a7f1bf5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG
=========

* Paella 5.2.11

* Fix bug in embed code

* Paella 5.2.10

* Fix publish scripts
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "paellaplayer",
"version": "5.2.10",
"version": "5.2.11",
"description": "Paella Player",
"license": "ECL-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion plugins/es.upv.paella.socialPlugin/social.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ Class ("paella.plugins.SocialPlugin",paella.ButtonPlugin,{
e.onclick=function(event){
var value = event.target? event.target.textContent: event.toElement.textContent;
if (value) {
var size = value.split("x");
var size = value.trim().split("x");

w_e.value = size[0];
h_e.value = size[1];
Expand Down

0 comments on commit a7f1bf5

Please sign in to comment.