File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 1414 hiddenInput : data . hiddenName
1515 } ;
1616
17- options . utilsScript = 'https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/15 .0.1 /js/utils.js' ;
17+ options . utilsScript = 'https://cdnjs.cloudflare.com/ajax/libs/intl-tel-input/17 .0.19 /js/utils.js' ;
1818 options . preferredCountries = data . preferredCountries ;
1919
2020 $el . intlTelInput ( options ) ;
Original file line number Diff line number Diff line change 22
33from django import forms
44from django .forms .utils import flatatt
5- from django .utils .encoding import force_text
5+ try :
6+ from django .utils .encoding import force_str as force_text
7+ except ImportError :
8+ from django .utils .encoding import force_text
69from django .utils .html import format_html
710from django .utils .safestring import mark_safe
811
9- INTL_TEL_INPUT_VERSION = '15 .0.1 '
12+ INTL_TEL_INPUT_VERSION = '17 .0.19 '
1013
1114
1215class IntlTelInputWidget (forms .TextInput ):
You can’t perform that action at this time.
0 commit comments