Browse Source

Merge branch 'master' of github.com:Semantic-Org/Semantic-UI into next

Conflicts:
	src/definitions/modules/progress.less
pull/1378/head
jlukic 10 years ago
parent
commit
68b5ac4ece
5 changed files with 23 additions and 24 deletions
  1. 9
      RELEASE-NOTES.md
  2. 2
      examples/kitchensink.html
  3. 5
      src/definitions/elements/segment.less
  4. 27
      src/definitions/modules/progress.less
  5. 4
      src/definitions/modules/transition.js

9
RELEASE-NOTES.md

@ -4,15 +4,20 @@
**Enhancements**
- **Transition** now has ``failSafe`` parameter to ensure transition callback fires even if native ``onAnimationEnd`` event does not fire due to element visibility. [Chromium Bug Report by Product Manager @ Mozilla](https://code.google.com/p/chromium/issues/detail?id=135350#c2) and [open issue](https://code.google.com/p/chromium/issues/detail?id=437860)
- **Transition** now has ``useFailSafe`` parameter (off by default) to ensure transition callback fires even if native ``onAnimationEnd`` event does not fire due to element visibility. [Chromium Bug Report by Product Manager @ Mozilla](https://code.google.com/p/chromium/issues/detail?id=135350#c2)
**Bugs**
- **Build** - NPM now correctly pins dependencies instead of using bleeding-edge versions which may break builds
- **Transition** - Transition now correctly detects missing animations, errors do not cause future image transitions to break
- **Menu/Segment** Fixes double border on pointing menu with attached segment **Thanks davialexandre**
- **Progress** - Fixes indicating progress appearing incorrectly at 100% complete **Thanks ordepdev**
**Enhancements**
- **Transition** - Transition's caching of final display state and *animation existence* now has improved performance.
- **Progress** - Progress now has sizing variations
**Docs**
- **Progress* - Added missing settings tab for progress module
### Version 1.0.1 - November 28, 2014

2
examples/kitchensink.html

@ -2964,7 +2964,7 @@ $(document)
</tr>
<tr class="positive">
<td>User 2</td>
<td>
<td></td>
<td>Data</td>
</tr>
<tr class="negative">

5
src/definitions/elements/segment.less

@ -83,11 +83,6 @@
Loose Coupling
--------------------*/
/* Menu */
.ui.pointing.menu + .ui.attached.segment {
top: 1px;
}
/* Header */
.ui.inverted.segment > .ui.header {
color: @white;

27
src/definitions/modules/progress.less

@ -43,6 +43,20 @@
}
/* Indicating */
.ui.indicating.progress .bar[style^="width: 1%"],
.ui.indicating.progress .bar[style^="width: 2%"],
.ui.indicating.progress .bar[style^="width: 3%"],
.ui.indicating.progress .bar[style^="width: 4%"],
.ui.indicating.progress .bar[style^="width: 5%"],
.ui.indicating.progress .bar[style^="width: 6%"],
.ui.indicating.progress .bar[style^="width: 7%"],
.ui.indicating.progress .bar[style^="width: 8%"],
.ui.indicating.progress .bar[style^="width: 9%"],
.ui.indicating.progress .bar[style^="width: 1"],
.ui.indicating.progress .bar[style^="width: 2"] {
background-color: @indicatingFirstColor;
}
.ui.indicating.progress .bar[style^="width: 3"] {
background-color: @indicatingSecondColor;
}
@ -61,19 +75,6 @@
.ui.indicating.progress .bar[style^="width: 100"] {
background-color: @indicatingSixthColor;
}
.ui.indicating.progress .bar[style^="width: 1%"],
.ui.indicating.progress .bar[style^="width: 2%"],
.ui.indicating.progress .bar[style^="width: 3%"],
.ui.indicating.progress .bar[style^="width: 4%"],
.ui.indicating.progress .bar[style^="width: 5%"],
.ui.indicating.progress .bar[style^="width: 6%"],
.ui.indicating.progress .bar[style^="width: 7%"],
.ui.indicating.progress .bar[style^="width: 8%"],
.ui.indicating.progress .bar[style^="width: 9%"],
.ui.indicating.progress .bar[style^="width: 1"],
.ui.indicating.progress .bar[style^="width: 2"] {
background-color: @indicatingFirstColor;
}
/* Single Digits Last */
.ui.indicating.progress .bar[style^="width: 1%"] + .label,

4
src/definitions/modules/transition.js

@ -363,9 +363,7 @@ $.fn.transition = function() {
var
duration = module.get.duration()
;
module.timer = setTimeout(function() {
module.complete();
}, duration + 200);
module.timer = setTimeout(module.complete, duration + 100);
module.verbose('Adding fail safe timer', module.timer);
}
},

Loading…
Cancel
Save