This file contains 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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDRnMW2wVo8S9ScZs95wNhK46jRk19rLBoNqnkIxpa9Uo9bGaclqPKn7IrjcaUA5UU/jSytM/kNNhFLAZkH/90buHml5CGUmAd35HzG9fDjcIJcqPA5PfbT9qU/Tvs+dRWcsIy2y7bNbnQojDlyoajdVQyjVftdJtvAk/OebTXbJLpYg7PVqnvfaIeA2ORMxNSklklD6JNwiZ6upOg6ccrsFKzBEj6yXcW1pjbHF6y5/vJtERHBzuNMYxmvcKc8+4hPibQ/ME3dn9y232cHSXHfdn4H1KAirEC9QTTrH8reuejcKJ/QBMpG9VhHongqa/Zf9qCSeeZruH0zOk08Ju4vC8vDmnl1T5xWnKb119bLZZR4MzAkTL8aao5nNbzTeuGKMyrHxbmFYJ334CN/AwqXhN0EF6/gIfbl+y/mbzdprhnYBCjMWuPrhYavXloXWga9i69RzXfv6WxUJU3toh6ooqm/US14JHAmTZzfugjitnppf7bsMJOqiePVAyyx2Mm/KW+wliQiRQMDFly7ZGhkBOmtMkll8/uk/op1kBetwO/8ZizsgLxj2gZ4jgwm3VqOPos1HRGCXOeC6ZYFQ0o6xFdQf2hbvaWl6PICvF5YkH6fjGtz7ArAWJ+MT1DbY4amt8J/G4dXbvgYSJ5z2+aCtK3g1Omi5inUnMchXIiiaw== [email protected] |
This file contains 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
<?xml version="1.0" encoding="utf-8"?> | |
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="https://www.w3schools.com/xml/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="https://www.w3schools.com/xml/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"> | |
<wsdl:types> | |
<s:schema elementFormDefault="qualified" targetNamespace="https://www.w3schools.com/xml/"> | |
<s:element name="FahrenheitToCelsius"> | |
<s:complexType> | |
<s:sequence> | |
<s:element minOccurs="0" maxOccurs="1" name="Fahrenheit" type="s:string" /> | |
</s:sequence> | |
</s:complexType> |
This file contains 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
<definitions name = "HelloService" | |
targetNamespace = "https://helloservice1.getsandbox.com:443/wsdl/HelloService.wsdl" | |
xmlns = "http://schemas.xmlsoap.org/wsdl/" | |
xmlns:soap = "http://schemas.xmlsoap.org/wsdl/soap/" | |
xmlns:tns = "https://helloservice1.getsandbox.com:443/wsdl/HelloService.wsdl" | |
xmlns:xsd = "http://www.w3.org/2001/XMLSchema"> | |
<message name = "SayHelloRequest"> | |
<part name = "firstName" type = "xsd:string"/> | |
</message> |
This file contains 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
isDirty : { | |
bind : { | |
bindTo : '{record}', | |
deep : true | |
}, | |
get : function (record) { | |
return record ? record.dirty : false | |
} | |
} |
This file contains 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
// BigVideo init | |
var BV = new $.BigVideo(), | |
vjsPlayer, fallback = false; | |
BV.init(); | |
vjsPlayer = BV.getPlayer(); | |
vjsPlayer.on('error', function() { | |
if (!fallback) { | |
// trying to apply fallback |