Skip to content

Commit

Permalink
Updated component to version 1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Semantic-Pusher-Robot committed Mar 5, 2015
1 parent 9b507a1 commit d54f0b5
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 20 deletions.
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": "1.10.4"
"version": "1.11.0"
}
9 changes: 3 additions & 6 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 1.10.4 - Sidebar
* # Semantic UI 1.11.0 - Sidebar
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -116,9 +116,9 @@ module.exports = function(parameters) {

create: {
id: function() {
module.verbose('Creating unique id for element');
id = module.get.uniqueID();
id = (Math.random().toString(16) + '000000000').substr(2,8);
elementNamespace = '.' + id;
module.verbose('Creating unique id for element', id);
}
},

Expand Down Expand Up @@ -732,9 +732,6 @@ module.exports = function(parameters) {
return transitions[transition];
}
}
},
uniqueID: function() {
return (Math.random().toString(16) + '000000000').substr(2,8);
}
},

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-sidebar',
summary : 'Semantic UI - Sidebar: Single component release',
version : '1.10.4',
version : '1.11.0',
git : 'git://github.com/Semantic-Org/UI-Sidebar.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-sidebar",
"version": "1.10.4",
"version": "1.11.0",
"title": "Semantic UI - Sidebar",
"description": "Single component release of sidebar",
"homepage": "http://www.semantic-ui.com",
Expand Down
2 changes: 1 addition & 1 deletion sidebar.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 1.10.4 - Sidebar
* # Semantic UI 1.11.0 - Sidebar
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down
9 changes: 3 additions & 6 deletions sidebar.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* # Semantic UI 1.10.4 - Sidebar
* # Semantic UI 1.11.0 - Sidebar
* http://github.com/semantic-org/semantic-ui/
*
*
Expand Down Expand Up @@ -114,9 +114,9 @@ $.fn.sidebar = function(parameters) {

create: {
id: function() {
module.verbose('Creating unique id for element');
id = module.get.uniqueID();
id = (Math.random().toString(16) + '000000000').substr(2,8);
elementNamespace = '.' + id;
module.verbose('Creating unique id for element', id);
}
},

Expand Down Expand Up @@ -730,9 +730,6 @@ $.fn.sidebar = function(parameters) {
return transitions[transition];
}
}
},
uniqueID: function() {
return (Math.random().toString(16) + '000000000').substr(2,8);
}
},

Expand Down
4 changes: 2 additions & 2 deletions sidebar.min.css

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions sidebar.min.js

Large diffs are not rendered by default.

0 comments on commit d54f0b5

Please sign in to comment.