Skip to content

Commit 33faa71

Browse files
committedApr 4, 2017
Use back-to-the-future app-header instead of demo.
1 parent e431a90 commit 33faa71

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed
 

‎examples/browser-amd/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ <h1>Timekit JS SDK AMD module (require.js) example</h1>
2727
console.log('timekit sdk loaded!');
2828

2929
timekit.configure({
30-
app: 'demo',
30+
app: 'back-to-the-future',
3131
inputTimestampFormat: 'l h:i a Y-m-d'
3232
});
3333

‎examples/browser-vanilla/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h1>Timekit JS SDK vanilla example</h1>
2222
<p>This is the most minimal boilerplate demo of timekit sdk used in the browser. Fire up your console (CMD+ALT+I) and use the SDK by hitting methods on the "timekit" global variable, e.g.</p>
2323
<code>
2424
timekit.configure({<br />
25-
&nbsp;&nbsp;app: 'demo',<br />
25+
&nbsp;&nbsp;app: 'back-to-the-future',<br />
2626
&nbsp;&nbsp;inputTimestampFormat: 'l h:i a Y-m-d'<br />
2727
});
2828
</code><br /><br />

‎examples/node-commonjs/main.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var timekit = require('../../src/timekit.js');
55
console.log('timekit sdk loaded!');
66

77
timekit.configure({
8-
app: 'demo',
8+
app: 'back-to-the-future',
99
inputTimestampFormat: 'l h:i a Y-m-d'
1010
});
1111

0 commit comments

Comments
 (0)
Please sign in to comment.