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

Commit f4b9c2c

Browse files
author
Daniel Cormier
committed
Better device listing.
1 parent 28079c9 commit f4b9c2c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "I want nexus",
33
"description": "I want nexus",
4-
"version": "0.0.4",
4+
"version": "0.0.5",
55
"content_scripts": [
66
{
77
"matches": ["https://play.google.com/store/devices/*"],

options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ function load_devices(saved_devices, removeInvalidIds)
5454
$("<div>").append(
5555
$("<input>").attr("type", "checkbox").addClass("devices").attr("id",device.iden).val(device.iden).prop('checked', saved_devices.indexOf(device.iden) !== -1)
5656
).append(
57-
$("<label>").attr("for",device.iden).append(device.nickname + ' (' + device.type + ')')
57+
$("<label>").attr("for",device.iden).append('<strong>' + device.nickname + '</strong> <small>(' + device.model + ')</small>')
5858
)
5959
);
6060
});

0 commit comments

Comments
 (0)