Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
flozz committed Dec 8, 2015
2 parents 553cfcf + 1e9493f commit 26ba953
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 6 deletions.
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ gruntfile.js
dist/*.js
.jscsrc
karma.conf.js
.travis.yml
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ Once you feel comfortable with the custom widget creation, you can create widget

## Changelog:

* **1.2.1:**
* Fixes minor display issues

* **1.2.0:**
* TabItem can now have icons
* Touch support on Window and Slider
Expand Down
2 changes: 1 addition & 1 deletion dist/photonui-base.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/photonui.js
Original file line number Diff line number Diff line change
Expand Up @@ -9332,7 +9332,7 @@ var FluidLayout = Layout.$extend({
* @type String
* @default "start"
*/
_horizontallAlign: "start",
_horizontalAlign: "start",

getHorizontalAlign: function () {
return this._horizontalAlign;
Expand Down
2 changes: 1 addition & 1 deletion dist/photonui.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion less/base/interactive/slider.less
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@


.photonui-slider {
display: flex;
display: flex !important;
flex-direction: row;
flew-wrap: nowrap;
align-items: center;
Expand Down
1 change: 1 addition & 0 deletions less/base/layout/fluidlayout.less
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@
display: flex;
flex-wrap: wrap;
height: 100%;
width: 100%;
align-content: flex-start;

> .photonui-container {
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": "photonui",
"version": "1.2.0",
"version": "1.2.1",
"description": "A javascript framework to create user interfaces",
"homepage": "http://wanadev.github.io/PhotonUI/",
"author": "Wanadev (http://wanadev.fr/)",
Expand Down
2 changes: 1 addition & 1 deletion src/layout/fluidlayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ var FluidLayout = Layout.$extend({
* @type String
* @default "start"
*/
_horizontallAlign: "start",
_horizontalAlign: "start",

getHorizontalAlign: function () {
return this._horizontalAlign;
Expand Down

0 comments on commit 26ba953

Please sign in to comment.