Skip to content

Commit

Permalink
Updated distribution to version 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Sep 2, 2015
1 parent bc27b07 commit 79c628a
Show file tree
Hide file tree
Showing 139 changed files with 4,081 additions and 3,187 deletions.
4 changes: 4 additions & 0 deletions .versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[email protected]_2
[email protected]
semantic:[email protected]
[email protected]
2 changes: 1 addition & 1 deletion components/accordion.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.0.8 - Accordion
* # Semantic UI 2.0.7 - Accordion
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
32 changes: 18 additions & 14 deletions components/accordion.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.0.8 - Accordion
* # Semantic UI 2.0.7 - Accordion
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -63,7 +63,9 @@ $.fn.accordion = function(parameters) {
initialize: function() {
module.debug('Initializing', $module);
module.bind.events();
module.observeChanges();
if(settings.observeChanges) {
module.observeChanges();
}
module.instantiate();
},

Expand Down Expand Up @@ -546,22 +548,24 @@ $.fn.accordion.settings = {
verbose : false,
performance : true,

on : 'click',
on : 'click', // event on title that opens accordion

observeChanges : true, // whether accordion should automatically refresh on DOM insertion

exclusive : true,
collapsible : true,
closeNested : false,
animateChildren : true,
exclusive : true, // whether a single accordion content panel should be open at once
collapsible : true, // whether accordion content can be closed
closeNested : false, // whether nested content should be closed when a panel is closed
animateChildren : true, // whether children opacity should be animated

duration : 350,
easing : 'easeOutQuad',
duration : 350, // duration of animation
easing : 'easeOutQuad', // easing equation for animation


onOpening : function(){},
onOpen : function(){},
onClosing : function(){},
onClose : function(){},
onChange : function(){},
onOpening : function(){}, // callback before open animation
onOpen : function(){}, // callback after open animation
onClosing : function(){}, // callback before closing animation
onClose : function(){}, // callback after closing animation
onChange : function(){}, // callback after closing or opening animation

error: {
method : 'The method you called is not defined'
Expand Down
2 changes: 1 addition & 1 deletion components/accordion.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions components/accordion.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/ad.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.0.8 - Ad
* # Semantic UI 2.0.7 - Ad
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
2 changes: 1 addition & 1 deletion components/ad.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 79c628a

Please sign in to comment.