For example, you want to set 40% alpha transparence to #000000 (black color), you need to add 66 like this #66000000.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Commit any changes to the record | |
| current.update(); | |
| //Check to make sure the table isn't synchronized already | |
| var tbl = current.getTableName(); | |
| /* | |
| if(tbl.startsWith('wf_') || tbl.startsWith('sys_ui_') || tbl == 'sys_choice' || current.getED().getBooleanAttribute('update_synch') || current.getED().getBooleanAttribute('update_synch_custom')){ | |
| gs.addErrorMessage('Updates are already being recorded for this table.'); | |
| action.setRedirectURL(current); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "BTTPresetName" : "Touchbar System Stats", | |
| "BTTPresetUUID" : "5BCAEC41-D306-4BB6-B172-F9EBB974D4D3", | |
| "BTTPresetContent" : [ | |
| { | |
| "BTTAppBundleIdentifier" : "BT.G", | |
| "BTTAppName" : "Global", | |
| "BTTAppSpecificSettings" : { | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public override View OnCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) | |
| { | |
| var view = base.OnCreateView(inflater, container, savedInstanceState); | |
| var recyclerView = view.FindViewById<RecyclerView>(Resource.Id.my_recycler_view); | |
| if (recyclerView != null) | |
| { | |
| recyclerView.HasFixedSize = true; | |
| var layoutManager = new LinearLayoutManager(Activity); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var paths = [ | |
| ["Account"], | |
| ["Account", "Payment Methods"], | |
| ["Account", "Payment Methods", "Credit Card"], | |
| ["Account", "Payment Methods", "Paypal"], | |
| ["Account", "Emails"], | |
| ["Account", "Emails", "Main Email"], | |
| ["Account", "Emails", "Backup Email"], | |
| ["Account", "Devices"], | |
| ["Account", "Devices", "Google Pixel"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class SubdomainRoute : RouteBase | |
| { | |
| public override RouteData GetRouteData(HttpContextBase httpContext) | |
| { | |
| if (httpContext.Request == null || httpContext.Request.Url == null) | |
| { | |
| return null; | |
| } | |
| var host = httpContext.Request.Url.Host; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // browser detect | |
| var BrowserDetect = { | |
| init: function() { | |
| this.browser = this.searchString(this.dataBrowser) || "An unknown browser"; | |
| this.version = this.searchVersion(navigator.userAgent) || this.searchVersion(navigator.appVersion) || "an unknown version"; | |
| this.OS = this.searchString(this.dataOS) || "an unknown OS"; | |
| }, | |
| searchString: function(data) { | |
| for (var i = 0; i < data.length; i++) { | |
| var dataString = data[i].string; |