Skip to content

Commit

Permalink
Beacon framework update
Browse files Browse the repository at this point in the history
  • Loading branch information
samsymons committed Sep 19, 2018
1 parent 07be30c commit d9e2e71
Show file tree
Hide file tree
Showing 79 changed files with 287 additions and 256 deletions.
Binary file modified Beacon.framework/Beacon
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/Assets.car
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/Beacon.storyboardc/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconAttachmentCell.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconContactFormField.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconDateCustomField.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconDatePicker.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconDropdownCustomField.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconDropdownPicker.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconMultilineCustomField.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconNumberCustomField.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconSearchFooterView.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/BeaconSinglelineCustomField.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/HSBeaconLoadingViewController.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/HSBeaconSearchResultsCell.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/HSStatusMessageViewController.nib
Binary file not shown.
Binary file modified Beacon.framework/Beacon.bundle/Info.plist
Binary file not shown.
6 changes: 5 additions & 1 deletion Beacon.framework/Beacon.bundle/article.css
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ html {

#fullArticle table.table-striped tr:nth-child(odd) td { background: #f9fafa; }

#fullArticle table.table-bordered { border-collapse: separate; border-radius: 3px; border: 1px solid #e3e8eb; border-left: 0; }
#fullArticle table.table-bordered { border-radius: 3px; border: 1px solid #e3e8eb; border-left: 0; }

#fullArticle table.table-bordered td { padding: 0.5em; }

Expand Down Expand Up @@ -207,3 +207,7 @@ html {
word-wrap: break-word;
font-weight: bolder;
}

#fullArticle .u-overflow-x {
overflow-x: auto;
}
16 changes: 16 additions & 0 deletions Beacon.framework/Beacon.bundle/article.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
function offsetForElement(element) {
var el = document.getElementById(element);
var viewportOffset = el.getBoundingClientRect();
return viewportOffset.top;
}

function wrapTables() {
var allTables = document.getElementsByTagName('table');
for (var i = 0; i < allTables.length; i++) {
var table = allTables[i];
var overflowWrapper = document.createElement('div');
overflowWrapper.classList.add('u-overflow-x');
table.parentNode.insertBefore(overflowWrapper, table);
overflowWrapper.appendChild(table);
}
}
247 changes: 0 additions & 247 deletions Beacon.framework/Beacon.bundle/conversationDetails.css

This file was deleted.

Loading

0 comments on commit d9e2e71

Please sign in to comment.