It’s http://kan.pps.tv/web/pps.js
PPStream.prototype.pps_width="400px";
The PPStream is never declared, is this PPStream object purely generated by ‘prototype’ way? I know how ‘prototype property’ works.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
PPStreamis actually declared. It’s declared as a function, though, not as a regular variable:See Working with Objects on the Mozilla Developer Network (especially this bit on
prototype) for more information.