nutella_framework 0.4.31 → 0.4.32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/framework_components/roomcast-channel-creator/dist/app.js +7 -2
- data/framework_components/roomcast-channel-creator/dist/nutella_lib.js +0 -0
- data/framework_components/roomcast-channel-creator/src/app/components/Channel.js +6 -1
- data/framework_components/roomcast-package-creator/dist/main.css +6 -2
- data/framework_components/roomcast-package-creator/src/less/main.less +8 -1
- metadata +1 -2
- data/VERSION.orig +0 -5
File without changes
|
@@ -124,7 +124,12 @@ var Channel = React.createClass({
|
|
124
124
|
var value = this.refs['textFieldUrl' + this.props.channelId].getValue();
|
125
125
|
switch(this.props.channel.type) {
|
126
126
|
case 'web':
|
127
|
-
|
127
|
+
var prefix = value.slice(0, 7);
|
128
|
+
if(prefix === 'http://') {
|
129
|
+
// do nothing
|
130
|
+
} else {
|
131
|
+
value = 'http://' + value;
|
132
|
+
}
|
128
133
|
break;
|
129
134
|
case 'iOS':
|
130
135
|
value = value + '://';
|