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
When we use coffee, we write:
class FooModel exstends Sirius.BaseModel @attr: ['id', 'title'] @validate: ...
But it code dirty for javascript, need some like this
var FooModel = Sirius.BaseModel.define_model({ 'attr': ['id', 'title'], 'validate' : ... some_method: function() {} })
The text was updated successfully, but these errors were encountered:
ff9c379
Sorry, something went wrong.
No branches or pull requests
When we use coffee, we write:
But it code dirty for javascript, need some like this
The text was updated successfully, but these errors were encountered: