Kaynağa Gözat

Deprecate js.Lib.alert().

Closes #2793.
Bruno Garcia 10 yıl önce
ebeveyn
işleme
223ba6c270
1 değiştirilmiş dosya ile 3 ekleme ve 1 silme
  1. 3 1
      std/js/Lib.hx

+ 3 - 1
std/js/Lib.hx

@@ -31,8 +31,10 @@ class Lib {
 	}
 	}
 
 
 	/**
 	/**
-		Display an alert message box containing the given message
+		Display an alert message box containing the given message.
+		@deprecated Use Browser.window.alert() instead.
 	**/
 	**/
+	@:deprecated("Lib.alert() is deprecated, use Browser.window.alert() instead")
 	public static function alert( v : Dynamic ) {
 	public static function alert( v : Dynamic ) {
 		untyped __js__("alert")(js.Boot.__string_rec(v,""));
 		untyped __js__("alert")(js.Boot.__string_rec(v,""));
 	}
 	}