Skip to content
This repository has been archived by the owner on Sep 3, 2021. It is now read-only.

Commit

Permalink
1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Miles Johnson committed Mar 27, 2014
1 parent b25d308 commit 66c22c6
Show file tree
Hide file tree
Showing 19 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.2.2",
"version": "1.3.0",
"name": "toolkit",
"description": "A collection of extensible front-end UI components for the responsive and mobile web.",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions dist/toolkit-jquery.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/toolkit-mootools.min.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/toolkit.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/jquery/Component.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Toolkit.Component = Toolkit.Class.extend(function() {}, {
component: 'Component',
version: '1.2.0',
version: '1.3.0',
enabled: false,
events: {},

Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/Accordion.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Toolkit.Accordion = Toolkit.Component.extend(function(element, options) {
var headers, sections, self = this;

this.component = 'Accordion';
this.version = '1.2.0';
this.version = '1.3.0';
this.element = element = $(element);
this.options = options = this.setOptions(options, element);
this.headers = headers = element.find(options.headerElement);
Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/Blackout.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Toolkit.Blackout = Toolkit.Component.extend(function(options) {
this.component = 'Blackout';
this.version = '1.2.0';
this.version = '1.3.0';
this.options = options = this.setOptions(options);
this.element = this.createElement();
this.count = 0;
Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/Carousel.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Toolkit.Carousel = Toolkit.Component.extend(function(element, options) {
var items, self = this;

this.component = 'Carousel';
this.version = '1.2.0';
this.version = '1.3.0';
this.element = element = $(element);
this.options = options = this.setOptions(options, element);

Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/Input.js
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Toolkit.InputSelect = Toolkit.Input.extend(function(select, options) {
var events;

this.component = 'InputSelect';
this.version = '1.2.0';
this.version = '1.3.0';
this.input = select = $(select);
this.multiple = select.prop('multiple');
this.options = options = this.setOptions(options, select);
Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/Modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Toolkit.Modal = Toolkit.Component.extend(function(nodes, options) {
var element, events;

this.component = 'Modal';
this.version = '1.2.2';
this.version = '1.3.0';
this.options = options = this.setOptions(options);
this.element = element = this.createElement();
this.elementBody = element.find(options.contentElement);
Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/Pin.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Toolkit.Pin = Toolkit.Component.extend(function(element, options) {
this.component = 'Pin';
this.version = '1.2.1';
this.version = '1.3.0';
this.element = element = $(element);
this.options = options = this.setOptions(options, element);
this.elementHeight = null;
Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/Popover.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Toolkit.Popover = Toolkit.Tooltip.extend(function(nodes, options) {
var element;

this.component = 'Popover';
this.version = '1.2.0';
this.version = '1.3.0';
this.options = options = this.setOptions(options);
this.element = element = this.createElement();
this.elementHead = element.find(options.titleElement);
Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/Tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Toolkit.Tabs = Toolkit.Component.extend(function(element, options) {
var events, sections, tabs, self = this;

this.component = 'Tabs';
this.version = '1.2.0';
this.version = '1.3.0';
this.element = element = $(element);
this.options = options = this.setOptions(options, element);

Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/Tooltip.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Toolkit.Tooltip = Toolkit.Component.extend(function(nodes, options) {
var element, events;

this.component = 'Tooltip';
this.version = '1.2.0';
this.version = '1.3.0';
this.options = options = this.setOptions(options);
this.element = element = this.createElement();
this.elementHead = element.find(options.titleElement);
Expand Down
2 changes: 1 addition & 1 deletion js/jquery/components/TypeAhead.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Toolkit.TypeAhead = Toolkit.Component.extend(function(input, options) {
var element, self = this;

this.component = 'TypeAhead';
this.version = '1.2.1';
this.version = '1.3.0';
this.options = options = this.setOptions(options, input);
this.element = element = this.createElement();
this.input = input;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.2.2",
"version": "1.3.0",
"name": "titon-toolkit",
"description": "A collection of extensible front-end UI components for the responsive and mobile web.",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
\/_/ \/_____/\/_____/\/_____/\/_/\/_/ \/_/ \/_/
```

# Toolkit v1.2.2 #
# Toolkit v1.3.0 #

Titon Toolkit is a collection of very powerful user interface components and utility classes
for the responsive, mobile, and modern web. Each component represents encapsulated HTML, CSS,
Expand Down
2 changes: 1 addition & 1 deletion toolkit.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |gem|
gem.name = "titon-toolkit"
gem.version = "1.2.2"
gem.version = "1.3.0"

# Info
gem.authors = ["Project Titon", "Miles Johnson"]
Expand Down
2 changes: 1 addition & 1 deletion version.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.2.2
1.3.0

0 comments on commit 66c22c6

Please sign in to comment.