You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
var secondMethod = function(someStuff) {
var len = someStuff.length;
ionicToast.show('Updating number of values {{len}} in the database','middle', false, 1000);
The text was updated successfully, but these errors were encountered:
var secondMethod = function(someStuff) {
var len = someStuff.length;
ionicToast.show('Updating number of values' + len + 'in the database','middle', false, 1000);
On Mar 1, 2017, at 11:51 PM, Sanket Tajane ***@***.***> wrote:
Did you try ?
var len = someStuff.length;
ionicToast.show('Updating number of values' + len + 'in the database','middle', false, 1000);```
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub, or mute the thread.
var secondMethod = function(someStuff) {
var len = someStuff.length;
ionicToast.show('Updating number of values {{len}} in the database','middle', false, 1000);
The text was updated successfully, but these errors were encountered: