Skip to content
This repository has been archived by the owner on Mar 23, 2018. It is now read-only.

Commit

Permalink
0.0.7
Browse files Browse the repository at this point in the history
- Fixed #14
  • Loading branch information
ParticleCore committed May 26, 2015
1 parent def7c43 commit ae16c2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Userscript/YouTubePlus.user.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// ==UserScript==
// @version 0.0.6
// @version 0.0.7
// @name YouTube +
// @namespace https://github.com/ParticleCore
// @description YouTube with more freedom
Expand Down Expand Up @@ -1665,8 +1665,8 @@
var input = '<input id="' + id + '" type="' + type + '"';
if (placeholder) {
input += ' placeholder="' + placeholder + '" size="' + size + '"';
if (typeof parSets && parSets[id] === 'string') {
input += ' value="' + parSets && parSets[id] + '"';
if (parSets && typeof parSets[id] === 'string') {
input += ' value="' + (parSets && parSets[id]) + '"';
}
} else if (parSets && parSets[id] === true) {
input += ' checked="true"';
Expand Down

0 comments on commit ae16c2b

Please sign in to comment.