CSS:
.dot:before {
content: "\2022";
}
HTML:
<i style="font-size: 7pt;" class="dot"></i>
.dot:before {
content: "\2022";
}
HTML:
<i style="font-size: 7pt;" class="dot"></i>
I ll just post what I learnt today technically.....! Get the android App here https://goo.gl/qmI0go
cordova plugin add cordova-plugin-digits --variable FABRIC_API_KEY=your_api_key --variable FABRIC_CONSUMER_KEY=your_consumer_key --variable FABRIC_CONSUMER_SECRET=your_consumer_secret
cordova plugin add https://github.com/JimmyMakesThings/cordova-plugin-digits --variable FABRIC_API_KEY=your_api_key --variable FABRIC_CONSUMER_KEY=your_consumer_key --variable FABRIC_CONSUMER_SECRET=your_consumer_secret
authenticateSuccess is called, otherwise the authenticateFailed is called instead.window.plugins.digits.authenticate(options, authenticateSuccess, authenticateFailed);
// Currently only accentColor and backgroundColor is supported.
// Note: These have no effect on Android.
const options = {
accentColor: '#ff0000',
backgroundColor: '#ffffff',
};
window.plugins.digits.authenticate(options,
(oAuthHeaders) => {
console.log(oAuthHeaders);
},
(error) => {
console.warn("[Digits]", "Login failed", error);
}
);
for more info http://docs.fabric.io/android/digits/verify-user.html
ids are uniqueididclasses are NOT uniqueclass on multiple elements.classes on the same element.classes and ids. JavaScript depends on there being only one page element with any particular id, or else the commonly used getElementById function couldn't be depended on.