You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: doc/guides/source/plugin_block.textile
+8-8
Original file line number
Diff line number
Diff line change
@@ -96,7 +96,7 @@ All block attributes that start with +aloha-block-+ are *internal* and can *only
96
96
97
97
h4. Block Types
98
98
99
-
One special block attribute is called +aloha-block-type+, which must be set to one of the block types registered at the @BlockManager@. It can be only set during construction time, and if it is not set, the @DefaultBlock@ is automatically chosen.
99
+
One special block attribute is called +alohaBlockType+, which must be set to one of the block types registered at the @BlockManager@. It can be only set during construction time, and if it is not set, the @DefaultBlock@ is automatically chosen.
100
100
101
101
Depending on the block type, a different @Block@ class will be instantiated. Later, you will be introduced to writing your own block type.
When calling @.alohaBlock@ on an element, the following data is merged together:
111
111
112
-
* @{ aloha-block-type: 'DefaultBlock' }@
112
+
* @{ alohaBlockType: 'DefaultBlock' }@
113
113
* The block attributes specified in the @.alohaBlock(attr)@ function
114
114
* All @data-@ attributes on the corresponding DOM node.
115
115
116
-
That is, if a DOM node that should be blockified has a @data-aloha-block-type@ property, this property is always used. Otherwise, the @aloha-block-type@ property from the @.alohaBlock()@ function is used (if given). If nothing is specified, the @DefaultBlock@ is used.
116
+
That is, if a DOM node that should be blockified has a @data-alohaBlockType@ property, this property is always used. Otherwise, the @alohaBlockType@ property from the @.alohaBlock()@ function is used (if given). If nothing is specified, the @DefaultBlock@ is used.
117
117
118
-
The same is done for all block attributes, not only @aloha-block-type@.
118
+
The same is done for all block attributes, not only @alohaBlockType@.
119
119
120
120
h4. Default Settings
121
121
@@ -124,10 +124,10 @@ Block construction such as the following is very common:
124
124
<javascript>
125
125
Aloha.ready(function() {
126
126
Aloha.jQuery('.foo').alohaBlock({
127
-
'aloha-block-type': 'MySpecialBlock'
127
+
'alohaBlockType': 'MySpecialBlock'
128
128
});
129
129
Aloha.jQuery('.bar').alohaBlock({
130
-
'aloha-block-type': 'DebugBlock'
130
+
'alohaBlockType': 'DebugBlock'
131
131
});
132
132
});
133
133
</javascript>
@@ -137,10 +137,10 @@ To make such initialization code easier to write and more declarative, this can
0 commit comments