1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

change locked text

This commit is contained in:
Luke Pulverenti 2013-06-16 21:49:06 -04:00
parent 764d5f5e49
commit f0ca09ad9f

View file

@ -388,8 +388,8 @@
html += '<div data-role="fieldcontain">'; html += '<div data-role="fieldcontain">';
html += '<label for="lock' + field + '">' + fieldTitle + ':</label>'; html += '<label for="lock' + field + '">' + fieldTitle + ':</label>';
html += '<select name="lock'+ type +'" id="lock' + field + '" data-role="slider" data-mini="true">'; html += '<select name="lock'+ type +'" id="lock' + field + '" data-role="slider" data-mini="true">';
html += '<option value="' + field + '">Locked</option>'; html += '<option value="' + field + '">Off</option>';
html += '<option value="" selected="selected">Unlocked</option>'; html += '<option value="" selected="selected">On</option>';
html += '</select>'; html += '</select>';
html += '</div>'; html += '</div>';
} }