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
/** Wraps an XMLHttpRequest to provide an easy one-line way of making an Ajax call, returning a Future. */
13
-
@deprecated("scalajs-dom no longer includes custom utilities, only facades. Try using dom.fetch API which doesn't require additional utilities.", "2.0.0")
13
+
@deprecated(
14
+
"scalajs-dom no longer includes custom utilities, only facades. Try using dom.fetch API which doesn't require additional utilities.",
15
+
"2.0.0")
14
16
objectAjax {
15
17
16
18
/** Supported data formats for Ajax are implicitly converted to InputData */
Copy file name to clipboardExpand all lines: src/main/scala/org/scalajs/dom/ext/AjaxException.scala
+6-2
Original file line number
Diff line number
Diff line change
@@ -5,11 +5,15 @@ import org.scalajs.dom
5
5
/** Thrown when `Ajax.get` or `Ajax.post` receives a non-20X response code. Contains the XMLHttpRequest that resulted in
6
6
* that response
7
7
*/
8
-
@deprecated("scalajs-dom no longer includes custom utilities, only facades. Try using dom.fetch API which doesn't require additional utilities.", "2.0.0")
8
+
@deprecated(
9
+
"scalajs-dom no longer includes custom utilities, only facades. Try using dom.fetch API which doesn't require additional utilities.",
// This is just there to work around some weird warnings in Scala 3.x
14
-
@deprecated("scalajs-dom no longer includes custom utilities, only facades. Try using dom.fetch API which doesn't require additional utilities.", "2.0.0")
16
+
@deprecated(
17
+
"scalajs-dom no longer includes custom utilities, only facades. Try using dom.fetch API which doesn't require additional utilities.",
0 commit comments