Last active
April 21, 2021 02:36
-
-
Save charleshimmer/5497283 to your computer and use it in GitHub Desktop.
When is BV done loading / deferred object.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var bvrr = $BV.ui('rr', 'show_reviews',{ | |
productId : 'product1' } | |
); | |
bvrr.done(function(){ | |
console.log('reviews loaded'); | |
}); | |
var bvqa = $BV.ui('qa', 'show_questions',{ | |
productId : 'product1' } | |
); | |
bvqa.done(function(){ | |
console.log('questions loaded'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment