diff --git a/server/documents/module.html.eco b/server/documents/module.html.eco index 8af15bda9..2478d704d 100755 --- a/server/documents/module.html.eco +++ b/server/documents/module.html.eco @@ -173,9 +173,11 @@ type : 'Semantic'

Internal methods can be overwritten at run-time for individual instances of a module

- // initialize both popups + // initialize both popups inline $('.demo.icon') - .popup() + .popup({ + inline: true + }) ; //output the first popup's logs to the page $('.demo.icon').first() diff --git a/server/documents/modules/dimmer.html.eco b/server/documents/modules/dimmer.html.eco index 2e2043e9a..fc9567d50 100755 --- a/server/documents/modules/dimmer.html.eco +++ b/server/documents/modules/dimmer.html.eco @@ -224,7 +224,7 @@ type : 'UI Module'

Behavior

-

All the following behaviors can be called using the syntax:

+

All the following behaviors can be called using the syntax:

$('.your.element') .dimmer('behavior name', argumentOne, argumentTwo) diff --git a/server/documents/modules/dropdown.html.eco b/server/documents/modules/dropdown.html.eco index 3592bc0db..36c4f803a 100755 --- a/server/documents/modules/dropdown.html.eco +++ b/server/documents/modules/dropdown.html.eco @@ -243,7 +243,7 @@ type : 'UI Module'

Behavior

-

All the following behaviors can be called using the syntax:

+

All the following behaviors can be called using the syntax:

$('.your.element') .dropdown('behavior name', argumentOne, argumentTwo) diff --git a/server/documents/modules/form.html.eco b/server/documents/modules/form.html.eco index 6996c5bdc..62ad95bb3 100755 --- a/server/documents/modules/form.html.eco +++ b/server/documents/modules/form.html.eco @@ -231,7 +231,7 @@ type : 'UI Behavior'

Behavior

- All the following behaviors can be called using the syntax $('.foo').form('behavior name', argumentOne, argumentTwo) + All the following behaviors can be called using the syntax $('.foo').form('behavior name', argumentOne, argumentTwo) diff --git a/server/documents/modules/modal.html.eco b/server/documents/modules/modal.html.eco index 4b55c139d..8b10e9520 100755 --- a/server/documents/modules/modal.html.eco +++ b/server/documents/modules/modal.html.eco @@ -172,11 +172,12 @@ type : 'UI Module'
$('.basic.modal') .modal('setting', { - onDeny: function(){ + closable : false, + onDeny : function(){ window.alert('Wait not yet!'); return false; }, - onApprove: function() { + onApprove : function() { window.alert('Approved!'); } }) @@ -276,7 +277,7 @@ type : 'UI Module'

Behavior

-

All the following behaviors can be called using the syntax:

+

All the following behaviors can be called using the syntax:

$('.ui.modal') .modal('behavior name', argumentOne, argumentTwo) diff --git a/server/documents/modules/popup.html.eco b/server/documents/modules/popup.html.eco index 481983ea1..862ee2599 100755 --- a/server/documents/modules/popup.html.eco +++ b/server/documents/modules/popup.html.eco @@ -110,7 +110,7 @@ type : 'UI Module'

Behavior

-

All the following behaviors can be called using the syntax:

+

All the following behaviors can be called using the syntax:

$('.your.element') .popup('behavior name', argumentOne, argumentTwo) @@ -208,8 +208,8 @@ type : 'UI Module'

Inline or relative to page

A popup can either be inserted directly after an element, or added as a child element to the page's body.

-
- An inline popup will remain in your page's html after being hidden, while a non-inline popup will remove itself after being hidden. +
+ Using inline will allow your popups to go places other popups can't go, like inside fixed or absolutely positioned elements
If you want to style each popup individually it makes sense to keep popup inline: true. If you are worried that your pop up might mistakingly inherit styles that it shouldn't, you should set inline: false. diff --git a/server/documents/modules/rating.html.eco b/server/documents/modules/rating.html.eco index 126f6b2d1..c4ed06802 100755 --- a/server/documents/modules/rating.html.eco +++ b/server/documents/modules/rating.html.eco @@ -208,7 +208,7 @@ type : 'UI Module'

Behavior

-

All the following behaviors can be called using the syntax:

+

All the following behaviors can be called using the syntax:

$('.ui.rating') .modal('behavior name', argumentOne, argumentTwo) diff --git a/server/documents/modules/shape.html.eco b/server/documents/modules/shape.html.eco index 037835d3b..249e1f17d 100755 --- a/server/documents/modules/shape.html.eco +++ b/server/documents/modules/shape.html.eco @@ -332,7 +332,7 @@ type : 'UI Module'

Behavior

-

All the following behaviors can be called using the syntax:

+

All the following behaviors can be called using the syntax:

$('.your.element') .shape('behavior name', argumentOne, argumentTwo) diff --git a/server/documents/modules/sidebar.html.eco b/server/documents/modules/sidebar.html.eco index 3e3877ff1..4e0493a04 100755 --- a/server/documents/modules/sidebar.html.eco +++ b/server/documents/modules/sidebar.html.eco @@ -341,7 +341,7 @@ type : 'UI Module'

Behavior

-

All the following behaviors can be called using the syntax:

+

All the following behaviors can be called using the syntax:

$('.your.element') .dropdown('behavior name', argumentOne, argumentTwo) diff --git a/server/documents/modules/transition.html.eco b/server/documents/modules/transition.html.eco index 5d628538b..dba4cd217 100755 --- a/server/documents/modules/transition.html.eco +++ b/server/documents/modules/transition.html.eco @@ -179,7 +179,7 @@ type : 'UI Module'

Behavior

-

All the following behaviors can be called using the syntax:

+

All the following behaviors can be called using the syntax:

$('.your.element') .dropdown('behavior name', argumentOne, argumentTwo) diff --git a/server/draft/tab.html.eco b/server/draft/tab.html.eco index a255177a4..6ab65fc76 100755 --- a/server/draft/tab.html.eco +++ b/server/draft/tab.html.eco @@ -215,7 +215,7 @@ type : 'UI Module'

Behavior

- All the following behaviors can be called using the syntax $('.foo').tab('behavior name', argumentOne, argumentTwo) + All the following behaviors can be called using the syntax $('.foo').tab('behavior name', argumentOne, argumentTwo)