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
from Muuri v 0.9 i am getting error from my uglify grunt module, because of using ES6 technique. Default value of parameter is not allowed in ES5.
dist/muuri.js row 6311
function createPackerProcessor(isWorker = false) {
should be function createPackerProcessor(isWorker) {
The text was updated successfully, but these errors were encountered:
@hackoff good catch! Let's make a patch release to fix this one.
Sorry, something went wrong.
Fixed: https://github.com/haltu/muuri/releases/tag/0.9.1
No branches or pull requests
from Muuri v 0.9 i am getting error from my uglify grunt module, because of using ES6 technique. Default value of parameter is not allowed in ES5.
dist/muuri.js
row 6311
function createPackerProcessor(isWorker = false) {
should be
function createPackerProcessor(isWorker) {
The text was updated successfully, but these errors were encountered: