Browse Source

Rebuild 2.1.3 #2956

pull/2961/head 2.1.3
Jack Lukic 9 years ago
parent
commit
6e27ec9dc3
5 changed files with 5 additions and 4 deletions
  1. 1
      RELEASE-NOTES.md
  2. 2
      dist/components/embed.js
  3. 2
      dist/components/embed.min.js
  4. 2
      dist/semantic.js
  5. 2
      dist/semantic.min.js

1
RELEASE-NOTES.md

@ -3,6 +3,7 @@
### Version 2.1.3 - Sep 03, 2015
**Bugfixes**
- **Embed** - Fixes issue with `?=` appearing before parameters instead of `?` [#2956](https://github.com/Semantic-Org/Semantic-UI/issues/2956) **Thanks @AgentShark**
- **Input** - Fixes regression where `ui icon input` inside forms were not correct width [#2953](https://github.com/Semantic-Org/Semantic-UI/issues/2953)
- **Input** - Fixes typo in focused placeholder text color preventing the value from being used [#2939](https://github.com/Semantic-Org/Semantic-UI/issues/2939)
- **Input** - `action input` now correctly show focused border on button side, and avoids duplicating borders

2
dist/components/embed.js

@ -627,7 +627,7 @@ $.fn.embed.settings = {
templates: {
iframe : function(url, parameters) {
return ''
+ '<iframe src="' + url + '?=' + parameters + '"'
+ '<iframe src="' + url + '?' + parameters + '"'
+ ' width="100%" height="100%"'
+ ' frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'
;

2
dist/components/embed.min.js
File diff suppressed because it is too large
View File

2
dist/semantic.js

@ -8054,7 +8054,7 @@ $.fn.embed.settings = {
templates: {
iframe : function(url, parameters) {
return ''
+ '<iframe src="' + url + '?=' + parameters + '"'
+ '<iframe src="' + url + '?' + parameters + '"'
+ ' width="100%" height="100%"'
+ ' frameborder="0" scrolling="no" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>'
;

2
dist/semantic.min.js
File diff suppressed because it is too large
View File

Loading…
Cancel
Save