Skip to content

Commit 14ce5fb

Browse files
committed
change the class used for the selector so that it wont' conflict
I found that using only "dropdown-toggle" as the selector would conflict is real bootstrap menus were in use in the navbar. By changing the selector to something unique this problem goes away.
1 parent 636e691 commit 14ce5fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,14 +154,14 @@ the drop-down is toggled closed after the user selectes a date/time.
154154
### Drop-down component with associated input box.
155155
```html
156156
<div class="dropdown">
157-
<a class="dropdown-toggle" id="dLabel" role="button" data-toggle="dropdown" data-target="#" href="#">
157+
<a class="dropdown-toggle my-toggle-select" id="dLabel" role="button" data-toggle="dropdown" data-target="#" href="#">
158158
<div class="input-append"><input type="text" class="input-large" data-ng-model="data.date"><span class="add-on"><i
159159
class="icon-calendar"></i></span>
160160
</div>
161161
</a>
162162
<ul class="dropdown-menu" role="menu" aria-labelledby="dLabel">
163163
<datetimepicker data-ng-model="data.date"
164-
data-datetimepicker-config="{ dropdownSelector: '.dropdown-toggle' }"></datetimepicker>
164+
data-datetimepicker-config="{ dropdownSelector: '.my-toggle-select' }"></datetimepicker>
165165
</ul>
166166
</div>
167167
```

0 commit comments

Comments
 (0)