Skip to content

Commit acac175

Browse files
committed
fix(log): removed console.log
1 parent c63cc1e commit acac175

4 files changed

Lines changed: 4 additions & 6 deletions

File tree

demo/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ <h1>Loading embed.js in a block</h1>
9595
});
9696
x.render();
9797

98-
// x.text(function(data){
99-
// console.log(data);
100-
// });
98+
x.text(function(data){
99+
console.log(data);
100+
});
101101

102102

103103
// ejs.template.basicAudio = function(match){

src/embed.js

Lines changed: 0 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/embed.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/js/modules/url.es6

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export default class Url{
1212
return this.input.replace(this.urlRegex,(match)=>{
1313
let extension = match.split('.')[match.split('.').length - 1];
1414
match = ((match[match.length-1] == '/') ? match.slice(0, -1) : match);
15-
console.log(this);
1615
if(config.exclude.indexOf(extension) === -1) return this.options.template.url(match, this.options)
1716
return match;
1817
});

0 commit comments

Comments
 (0)