We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7213e0 commit 169ea70Copy full SHA for 169ea70
sphinx_tabs/tabs.js
@@ -1,3 +1,12 @@
1
+if (!String.prototype.startsWith) {
2
+ Object.defineProperty(String.prototype, 'startsWith', {
3
+ value: function(search, pos) {
4
+ pos = !pos || pos < 0 ? 0 : +pos;
5
+ return this.substring(pos, pos + search.length) === search;
6
+ }
7
+ });
8
+}
9
+
10
// From http://stackoverflow.com/questions/123999/how-to-tell-if-a-dom-element-is-visible-in-the-current-viewport
11
function elementIsInView (el) {
12
if (typeof jQuery === "function" && el instanceof jQuery) {
0 commit comments