instedd-pigeon 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -28,7 +28,7 @@ class TwilioTemplate extends PigeonTemplate
|
|
28
28
|
phone_select = $('#twilio-phone-number')
|
29
29
|
options = ""
|
30
30
|
for phone in @phone_numbers
|
31
|
-
options += "<option
|
31
|
+
options += "<option value=\"#{phone.phone_number}\">#{phone.friendly_name}</option>"
|
32
32
|
phone_select.html(options)
|
33
33
|
|
34
34
|
phones_div.show()
|
data/lib/pigeon/version.rb
CHANGED