Skip to content

Commit

Permalink
0.9.6 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Sep 13, 2014
1 parent 48f9c14 commit ee3064b
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 20 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "https://github.com/nolimits4web/Framework7.git"
},
"description": "Full Featured HTML Framework For Building iOS 7 Apps",
"version": "0.9.5",
"version": "0.9.6",
"author": "Vladimir Kharlampidi",
"homepage": "http://www.idangero.us/framework7",
"keywords": ["mobile", "framework", "ios 7", "ios7", "ios8", "ios 8", "iphone", "ipad", "apple", "phonegap", "native", "touch", "appstore", "app", "f7"],
Expand Down
4 changes: 2 additions & 2 deletions dist/css/framework7.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Framework7 0.9.5
* Framework7 0.9.6
* Full Featured HTML Framework For Building iOS 7 Apps
*
* http://www.idangero.us/framework7
Expand All @@ -10,7 +10,7 @@
*
* Licensed under MIT
*
* Released on: September 12, 2014
* Released on: September 13, 2014
*/
html,
body {
Expand Down
4 changes: 2 additions & 2 deletions dist/css/framework7.min.css

Large diffs are not rendered by default.

17 changes: 8 additions & 9 deletions dist/js/framework7.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Framework7 0.9.5
* Framework7 0.9.6
* Full Featured HTML Framework For Building iOS 7 Apps
*
* http://www.idangero.us/framework7
Expand All @@ -10,7 +10,7 @@
*
* Licensed under MIT
*
* Released on: September 12, 2014
* Released on: September 13, 2014
*/
(function () {

Expand Down Expand Up @@ -3804,19 +3804,18 @@
content.css('height', 'auto');
var clientLeft = content[0].clientLeft;
content.transition('');
list.trigger('opened');
item.trigger('opened');
}
else {
content.css('height', '');
list.trigger('closed');
item.trigger('closed');
}
});
list.trigger('open');
item.trigger('open');
item.addClass('accordion-item-expanded');
};
app.accordionClose = function (item) {
item = $(item);
var list = item.parents('.accordion-list');
var content = item.find('.accordion-item-content');
item.removeClass('accordion-item-expanded');
content.transition(0);
Expand All @@ -3831,14 +3830,14 @@
content.css('height', 'auto');
var clientLeft = content[0].clientLeft;
content.transition('');
list.trigger('opened');
item.trigger('opened');
}
else {
content.css('height', '');
list.trigger('closed');
item.trigger('closed');
}
});
list.trigger('close');
item.trigger('close');
};
/*===============================================================================
************ Fast Clicks ************
Expand Down
10 changes: 5 additions & 5 deletions dist/js/framework7.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Framework7",
"version": "0.9.5",
"version": "0.9.6",
"description": "Full Featured HTML Framework For Building iOS 7 Apps",
"main": "dist/",
"repository": {
Expand Down

0 comments on commit ee3064b

Please sign in to comment.