Browse Source

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

pull/2034/head
jlukic 9 years ago
parent
commit
0f83f12d69
3 changed files with 5 additions and 5 deletions
  1. 6
      README.md
  2. 2
      src/definitions/behaviors/form.js
  3. 2
      src/definitions/modules/progress.less

6
README.md

@ -51,7 +51,7 @@ Browser prefixes are present for Internet Explorer 9, but the browser is not off
#### International
* **Chinese** A Chinese mirror site is available at [http://www.semantic-ui.cn](http:/www.semantic-ui.cn)
* **Chinese** A Chinese mirror site is available at [http://www.semantic-ui.cn](http://www.semantic-ui.cn)
* **Right-to-Left (RTL)** An RTL version can be created using our build tools by selecting `rtl` from the install script
* **Translation** To help translate see the [Wiki Guide](https://github.com/Semantic-Org/Semantic-UI/wiki/Translating-Semantic-UI-Docs) for translations
@ -59,9 +59,9 @@ Browser prefixes are present for Internet Explorer 9, but the browser is not off
Resource | Description
--- | --- |
Bugs & Feature Requests | Make a test case by forking this [jsfiddle](http://jsfiddle.net/efp8z6Ln/), then submit a [bug on GitHub](https://github.com/Semantic-Org/Semantic-UI/issues)
Bugs & Feature Requests | All bug submission **require** a link to a test case, and a set of steps to reproduce the issue. You can make a test case by forking this [jsfiddle](http://jsfiddle.net/efp8z6Ln/), then submit your [bug report on GitHub Issues](https://github.com/Semantic-Org/Semantic-UI/issues)
Live Chat | Join our [Gitter.im Room](https://gitter.im/Semantic-Org/Semantic-UI)
Newsletter Updates | Sign up for updates at [semantic-ui.com](http:/www.semantic-ui.com)
Newsletter Updates | Sign up for updates at [semantic-ui.com](http://www.semantic-ui.com)
Additional Resources | Submit a question on [StackOverflow](http://www.stackoverflow.com) or ask our [Google Group](https://groups.google.com/forum/#!forum/semantic-ui)
#### Places to Help

2
src/definitions/behaviors/form.js

@ -100,7 +100,7 @@ $.fn.form = function(fields, parameters) {
attachEvents: function(selector, action) {
action = action || 'submit';
$(selector)
.on('click', function(event) {
.on('click' + eventNamespace, function(event) {
module[action]();
event.preventDefault();
})

2
src/definitions/modules/progress.less

@ -138,7 +138,7 @@
/* Percent Complete */
.ui.progress .bar > .progress {
white-space: nowrap;
position: absolute;
position: @progressPosition;
width: @progressWidth;
font-size: @progressSize;
top: @progressTop;

Loading…
Cancel
Save