nativescript-toast
Advanced tools
Comparing version 1.4.0-3 to 1.4.0-4
{ | ||
"name": "nativescript-toast", | ||
"version": "1.4.0-3", | ||
"version": "1.4.0-4", | ||
"description": "A NativeScript Toast Plugin for Android and iOS apps.", | ||
@@ -5,0 +5,0 @@ "main": "toast.js", |
@@ -9,5 +9,5 @@ /*global exports*/ | ||
var d = (typeof (duration) === "string" && duration[0] === "l") ? 3.5 : 2; | ||
return JLToast.makeText(text); | ||
}; | ||
return Toaster(text); | ||
} | ||
exports.makeText = makeText; |
15748