From: Vinicius Costa Gomes Date: Mon, 12 Aug 2013 18:32:40 +0000 (-0300) Subject: bluetooth: Fix typo when copying "uuids" property for a cloned device X-Git-Tag: accepted/tizen/generic/20140324.124941~188^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c7f9e971ef825bfd29b1b4235be25aabcb8c817;p=platform%2Fframework%2Fweb%2Ftizen-extensions-crosswalk.git bluetooth: Fix typo when copying "uuids" property for a cloned device --- diff --git a/bluetooth/bluetooth_api.js b/bluetooth/bluetooth_api.js index f036f9b..dc09f9a 100644 --- a/bluetooth/bluetooth_api.js +++ b/bluetooth/bluetooth_api.js @@ -559,7 +559,7 @@ BluetoothDevice.prototype._clone = function() { var uuids_array = []; for (var i = 0; i < this.uuids.length; i++) - uuids_array[i] = this,uuids[i]; + uuids_array[i] = this.uuids[i]; _addConstProperty(clone, "uuids", uuids_array);