Skip to content

Commit

Permalink
Updated component to version 2.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Aug 10, 2015
1 parent 0c00ef8 commit 7369c24
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 13 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ This repository contains pre-compiled transition files using the default themes.

For the latest changes please see the [Release Notes](https://github.com/Semantic-Org/UI-Transition/blob/master/RELEASE-NOTES.md)

**Special Note**
An update in `2.0.8` has fixed an issue which may have prevented some single component modules from working correctly. Please see notes in [this pull request](https://github.com/Semantic-Org/Semantic-UI/pull/2816).

If you're looking for the full version of Semantic including all components and build tools [check out the main project repository](https://github.com/Semantic-Org/Semantic-UI/tree/1.0)

#### To install with Bower
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@
"framework"
],
"license": "MIT",
"version": "2.0.7"
"version": "2.0.8"
}
13 changes: 7 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.0.7 - Transition
* # Semantic UI 2.0.8 - Transition
* http://github.com/semantic-org/semantic-ui/
*
*
Expand All @@ -13,7 +13,8 @@

"use strict";

$.fn.transition = function() {
var _module = module;
module.exports = function() {
var
$allModules = $(this),
moduleSelector = $allModules.selector || '',
Expand Down Expand Up @@ -409,7 +410,7 @@ $.fn.transition = function() {
}
},
transitionExists: function(animation, exists) {
$.fn.transition.exists[animation] = exists;
_module.exports.exists[animation] = exists;
module.verbose('Saving existence of transition', animation, exists);
}
},
Expand Down Expand Up @@ -620,7 +621,7 @@ $.fn.transition = function() {
return style.replace(/display.*?;/, '');
},
transitionExists: function(animation) {
return $.fn.transition.exists[animation];
return _module.exports.exists[animation];
},
animationStartEvent: function() {
var
Expand Down Expand Up @@ -992,9 +993,9 @@ $.fn.transition = function() {
};

// Records if CSS transition is available
$.fn.transition.exists = {};
_module.exports.exists = {};

module.exports.settings = {
_module.exports.settings = {

// module info
name : 'Transition',
Expand Down
2 changes: 1 addition & 1 deletion package.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Package.describe({
name : 'semantic:ui-transition',
summary : 'Semantic UI - Transition: Single component release',
version : '2.0.7',
version : '2.0.8',
git : 'git://github.com/Semantic-Org/UI-Transition.git',
});

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "semantic-ui-transition",
"version": "2.0.7",
"version": "2.0.8",
"title": "Semantic UI - Transition",
"description": "Single component release of transition",
"homepage": "http://www.semantic-ui.com",
Expand Down
2 changes: 1 addition & 1 deletion transition.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.0.7 - Transition
* # Semantic UI 2.0.8 - Transition
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
2 changes: 1 addition & 1 deletion transition.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 2.0.7 - Transition
* # Semantic UI 2.0.8 - Transition
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
2 changes: 1 addition & 1 deletion transition.min.css

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

2 changes: 1 addition & 1 deletion transition.min.js

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

0 comments on commit 7369c24

Please sign in to comment.