We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I use minified files?
The files are in the folder:
/ui/minified/
For example, the file autocomplete.min.js: define(["jquery","./core","./widget","./position","./menu"],t)
define(["jquery","./core","./widget","./position","./menu"],t)
has dependences which can't be resolved because the min files has the suffix "min" (core.js doesn't exists, the name is core.min.js).
This can be fixed if you don't add the suffix "min" to files in minified folder.
The text was updated successfully, but these errors were encountered:
As I noticed, this should be fixed with 1.12.0 at least, as all files got renamed to the correct names.
Sorry, something went wrong.
No branches or pull requests
How can I use minified files?
The files are in the folder:
/ui/minified/
For example, the file autocomplete.min.js:
define(["jquery","./core","./widget","./position","./menu"],t)
has dependences which can't be resolved because the min files has the suffix "min" (core.js doesn't exists, the name is core.min.js).
This can be fixed if you don't add the suffix "min" to files in minified folder.
The text was updated successfully, but these errors were encountered: