#15300 closed defect (invalid)
Builder Fails on dijit/form/_SearchMixin
Reported by: | jbest | Owned by: | |
---|---|---|---|
Priority: | undecided | Milestone: | tbd |
Component: | Dijit | Version: | 1.7.2 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
Builder is failing with:
error(311) Missing dependency. module: dijit/form/_SearchMixin; dependency: dojo/sniff
https://github.com/dojo/dijit/blob/master/form/_SearchMixin.js
Looks like the define has:
"dojo/sniff", // has("ie")
and it should be
"dojo/_base/sniff", // has("ie")
Change History (3)
comment:1 follow-up: 2 Changed 8 years ago by
Resolution: | → invalid |
---|---|
Status: | new → closed |
comment:2 Changed 8 years ago by
Replying to bill:
sniff was moved to dojo/ (the root directory) for 1.8. And _SearchMixin is new for 1.8. So I don't see an issue. Apparently you are trying to combine some 1.8 and 1.7 code together?
I cherry picked this commit on my 1.7.2 branch. Thanks for the explanation.
comment:3 Changed 8 years ago by
Ah there you go. Probably you can cherry-pick the dojo/sniff commit too (although probably you could figure that out without me telling you).
Note: See
TracTickets for help on using
tickets.
sniff was moved to dojo/ (the root directory) for 1.8. And _SearchMixin is new for 1.8. So I don't see an issue. Apparently you are trying to combine some 1.8 and 1.7 code together?