Skip to content

Commit

Permalink
fix ribbon menu with button group
Browse files Browse the repository at this point in the history
  • Loading branch information
olton committed Mar 13, 2018
1 parent 447ba52 commit d8cdf5d
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 18 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 4.0.8
+ [x] Ribbon menu: fix it for button group

### 4.0.7
+ [x] Button group: fix it

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ It's an independent project with its ongoing development made possible entirely
<br>
<hr>

## Current Version 4.0.7
## Current Version 4.0.8

### Status
[![Build Status](https://travis-ci.org/olton/Metro-UI-CSS.svg?branch=master)](https://travis-ci.org/olton/Metro-UI-CSS)
Expand Down
6 changes: 3 additions & 3 deletions build/js/metro.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Metro 4 Components Library v4.0.7 build 618-beta (https://metroui.org.ua)
* Metro 4 Components Library v4.0.8 build 619-beta (https://metroui.org.ua)
* Copyright 2018 Sergey Pimenov
* Licensed under MIT
*/
Expand Down Expand Up @@ -71,7 +71,7 @@ var isTouch = (('ontouchstart' in window) || (navigator.MaxTouchPoints > 0) || (

var Metro = {

version: "4.0.7-618-beta",
version: "4.0.8-619-beta",
isTouchable: isTouch,
fullScreenEnabled: document.fullscreenEnabled,
sheet: null,
Expand Down Expand Up @@ -11389,7 +11389,7 @@ var RibbonMenu = {
var fluentGroups = element.find(".ribbon-toggle-group");
$.each(fluentGroups, function(){
var g = $(this);
g.buttonsGroup({
g.buttongroup({
clsActive: "active"
});

Expand Down
4 changes: 2 additions & 2 deletions build/js/metro.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/js/metro.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h5>Table of contents</h5>
<a href="#_package_managers">Package managers</a>
<ul>
<li><a href="#_pm_npm">npm</a></li>
<li><a href="#_pm_yarn">yarn</a></li>
<li><a href="#_pm_yarn">Yarn</a></li>
<li><a href="#_pm_nuget">NuGet</a></li>
</ul>
</li>
Expand Down
6 changes: 3 additions & 3 deletions docs/metro/js/metro.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* Metro 4 Components Library v4.0.7 build 618-beta (https://metroui.org.ua)
* Metro 4 Components Library v4.0.8 build 619-beta (https://metroui.org.ua)
* Copyright 2018 Sergey Pimenov
* Licensed under MIT
*/
Expand Down Expand Up @@ -71,7 +71,7 @@ var isTouch = (('ontouchstart' in window) || (navigator.MaxTouchPoints > 0) || (

var Metro = {

version: "4.0.7-618-beta",
version: "4.0.8-619-beta",
isTouchable: isTouch,
fullScreenEnabled: document.fullscreenEnabled,
sheet: null,
Expand Down Expand Up @@ -11389,7 +11389,7 @@ var RibbonMenu = {
var fluentGroups = element.find(".ribbon-toggle-group");
$.each(fluentGroups, function(){
var g = $(this);
g.buttonsGroup({
g.buttongroup({
clsActive: "active"
});

Expand Down
4 changes: 2 additions & 2 deletions docs/metro/js/metro.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/metro/js/metro.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion js/plugins/ribbon-menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ var RibbonMenu = {
var fluentGroups = element.find(".ribbon-toggle-group");
$.each(fluentGroups, function(){
var g = $(this);
g.buttonsGroup({
g.buttongroup({
clsActive: "active"
});

Expand Down
2 changes: 1 addition & 1 deletion metro.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>Metro4</id>
<version>4.0.7</version>
<version>4.0.8</version>
<title>Metro 4 Components Library</title>
<authors>Sergey Pimenov</authors>
<owners>Sergey Pimenov</owners>
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"author": "Sergey Pimenov",
"name": "metro4",
"version": "4.0.7",
"build": "618",
"version": "4.0.8",
"build": "619",
"version_suffix": "-beta",
"description": "The front-end framework for Build responsive, mobile-first projects on the web with the first front-end component library in Metro Style",
"keywords": [
Expand Down

0 comments on commit d8cdf5d

Please sign in to comment.