I just create a new repo https://github.com/tolbard/ember-moving. In this repo I extend the view and the controler of embejs for allow easy interaction with JQuery Mobile. This is base on the work of LuisSala.
Is there any convention/standard for naming the class of a mix library with EmberJs? I want to avoid any conflict and stay with short name. It could be a prefix or a postfix.
Actually I have just name the new class :
– Ember.PageView is the conterpart of the page element in JQMobile.
-
Ember.HeaderView is the conterpart of the toolbar header element in JQMobile.
-
Ember.ContentView is the conterpart of the content element in JQMobile.
-
Ember.FooterView is the conterpart of the toolbar Footer element in JQMobile.
-
Ember.ListItemView is the conterpart of the element of a List View in JQMobile.
-
Ember.ListView is the conterpart of a List View in JQMobile.
Sorry for My English it’s not my mother tongue.
wagenet commented a will ago
I recommend a new Namespace. To create a new Namespace, just do: MyNamespace = Ember.Namespace.create().
https://github.com/emberjs/ember.js/issues/622