Skip to content

Instantly share code, notes, and snippets.

View JoA-MoS's full-sized avatar

Justin Dietz JoA-MoS

View GitHub Profile
@JoA-MoS
JoA-MoS / console.js
Created June 5, 2017 21:59
Force new One Drive Sync Client rather groove
_spPageContextInfo.showNGSCDialogForSyncOnTS = true;
@JoA-MoS
JoA-MoS / useNGSCSyncDialog
Created April 27, 2017 17:17
Some Code from sharepoint offline.js that determines the SyncClient
function useNGSCSyncDialog(a) {
    if (!Boolean(a) || !Boolean(_spPageContextInfo))
        return false;
    var b = typeof a.ListTemplateType != "undefined" && a.ListTemplateType == 700;
    return _spPageContextInfo.isSPO ? b ? Flighting.VariantConfiguration.IsExpFeatureClientEnabled(569) || _spPageContextInfo.showNGSCDialogForSyncOnODB : !(window.OffSwitch == null || OffSwitch.IsActive("92139EC2-6BC6-4DE5-8F94-AFBF3DB3E687")) && _spPageContextInfo.showNGSCDialogForSyncOnTS : false
}