Skip to content

Commit 79c628a

Browse files
Updated distribution to version 2.0.7
1 parent bc27b07 commit 79c628a

139 files changed

Lines changed: 4081 additions & 3187 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.versions

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
jquery@1.11.3_2
2+
meteor@1.1.6
3+
semantic:ui-css@2.0.7
4+
underscore@1.0.3

components/accordion.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.0.8 - Accordion
2+
* # Semantic UI 2.0.7 - Accordion
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*

components/accordion.js

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.0.8 - Accordion
2+
* # Semantic UI 2.0.7 - Accordion
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*
@@ -63,7 +63,9 @@ $.fn.accordion = function(parameters) {
6363
initialize: function() {
6464
module.debug('Initializing', $module);
6565
module.bind.events();
66-
module.observeChanges();
66+
if(settings.observeChanges) {
67+
module.observeChanges();
68+
}
6769
module.instantiate();
6870
},
6971

@@ -546,22 +548,24 @@ $.fn.accordion.settings = {
546548
verbose : false,
547549
performance : true,
548550

549-
on : 'click',
551+
on : 'click', // event on title that opens accordion
552+
553+
observeChanges : true, // whether accordion should automatically refresh on DOM insertion
550554

551-
exclusive : true,
552-
collapsible : true,
553-
closeNested : false,
554-
animateChildren : true,
555+
exclusive : true, // whether a single accordion content panel should be open at once
556+
collapsible : true, // whether accordion content can be closed
557+
closeNested : false, // whether nested content should be closed when a panel is closed
558+
animateChildren : true, // whether children opacity should be animated
555559

556-
duration : 350,
557-
easing : 'easeOutQuad',
560+
duration : 350, // duration of animation
561+
easing : 'easeOutQuad', // easing equation for animation
558562

559563

560-
onOpening : function(){},
561-
onOpen : function(){},
562-
onClosing : function(){},
563-
onClose : function(){},
564-
onChange : function(){},
564+
onOpening : function(){}, // callback before open animation
565+
onOpen : function(){}, // callback after open animation
566+
onClosing : function(){}, // callback before closing animation
567+
onClose : function(){}, // callback after closing animation
568+
onChange : function(){}, // callback after closing or opening animation
565569

566570
error: {
567571
method : 'The method you called is not defined'

components/accordion.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/accordion.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/ad.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* # Semantic UI 2.0.8 - Ad
2+
* # Semantic UI 2.0.7 - Ad
33
* http://github.com/semantic-org/semantic-ui/
44
*
55
*

components/ad.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)