File tree Expand file tree Collapse file tree 5 files changed +0
-18
lines changed
Expand file tree Collapse file tree 5 files changed +0
-18
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ export var NETWORK_OPTIONS :{[name:string]:social.NetworkOptions} = {
3434 enableMonitoring : false ,
3535 areAllContactsUproxy : false ,
3636 supportsReconnect : false ,
37- isExperimental : true
3837 } ,
3938 'GitHub' : {
4039 metricsName : 'github' ,
@@ -43,7 +42,6 @@ export var NETWORK_OPTIONS :{[name:string]:social.NetworkOptions} = {
4342 enableMonitoring : false ,
4443 areAllContactsUproxy : true ,
4544 supportsReconnect : false ,
46- isExperimental : true
4745 } ,
4846 'Quiver' : {
4947 displayName : 'uProxy' ,
@@ -53,7 +51,6 @@ export var NETWORK_OPTIONS :{[name:string]:social.NetworkOptions} = {
5351 enableMonitoring : true ,
5452 areAllContactsUproxy : true ,
5553 supportsReconnect : true ,
56- isExperimental : true ,
5754 isEncrypted : true
5855 } ,
5956 'Cloud' : {
@@ -63,6 +60,5 @@ export var NETWORK_OPTIONS :{[name:string]:social.NetworkOptions} = {
6360 enableMonitoring : false ,
6461 areAllContactsUproxy : true ,
6562 supportsReconnect : false ,
66- isExperimental : true
6763 }
6864} ;
Original file line number Diff line number Diff line change 219219 < div on-tap ='{{networkTapped }} ' class ='networkLoginButton ' data-network ='{{n}} '>
220220 < core-icon icon ='uproxy-icons:{{n}} '> </ core-icon >
221221 < div class ='networkName '> {{getNetworkDisplayName(n)}}</ div >
222- <!--
223- <span class='experimental paleText' hidden?='{{!isExperimentalNetwork(n)}}'>
224- (Experimental)
225- </span>
226- -->
227222 < div class ='chevronWrapper '>
228223 < core-icon icon ="chevron-right "> </ core-icon >
229224 </ div >
Original file line number Diff line number Diff line change @@ -99,9 +99,6 @@ var inviteUser = {
9999 }
100100 return ui . getNetworkDisplayName ( networkName ) ;
101101 } ,
102- isExperimentalNetwork : function ( networkName :string ) {
103- return ui . isExperimentalNetwork ( networkName ) ;
104- } ,
105102 closeLoginDialog : function ( ) {
106103 this . $ . loginToInviteFriendDialog . close ( ) ;
107104 } ,
@@ -118,7 +115,6 @@ var inviteUser = {
118115 } ,
119116 ready : function ( ) {
120117 this . selectedNetworkName = '' ;
121- this . ui = ui ;
122118 this . model = ui_context . model ;
123119 this . inviteCode = '' ;
124120 }
Original file line number Diff line number Diff line change @@ -1164,10 +1164,6 @@ export class UserInterface implements ui_constants.UiApi {
11641164 return this . getProperty_ < boolean > ( networkName , 'supportsReconnect' ) || false ;
11651165 }
11661166
1167- public isExperimentalNetwork = ( networkName :string ) : boolean => {
1168- return this . getProperty_ < boolean > ( networkName , 'isExperimental' ) || false ;
1169- }
1170-
11711167 private getProperty_ = < T > ( networkName :string , propertyName :string ) : T => {
11721168 if ( NETWORK_OPTIONS [ networkName ] ) {
11731169 return ( < any > ( NETWORK_OPTIONS [ networkName ] ) ) [ propertyName ] ;
Original file line number Diff line number Diff line change @@ -125,7 +125,6 @@ export interface NetworkOptions {
125125 supportsReconnect :boolean ;
126126 displayName ?:string ; // Network name to be displayed in the UI.
127127 metricsName ?:string ; // Name to use for metrics
128- isExperimental ?:boolean ;
129128 isEncrypted ?:boolean ;
130129 rosterFunction ?:( rosterNames :string [ ] ) => number ;
131130}
You can’t perform that action at this time.
0 commit comments