|
@@ -699,12 +699,15 @@ the specific language governing permissions and limitations under the Apache Lic
|
|
|
|
|
|
this.container = this.createContainer();
|
|
|
|
|
|
- this.liveRegion = $("<span>", {
|
|
|
- role: "status",
|
|
|
- "aria-live": "polite"
|
|
|
- })
|
|
|
- .addClass("select2-hidden-accessible")
|
|
|
- .appendTo(document.body);
|
|
|
+ this.liveRegion = $('.select2-hidden-accessible');
|
|
|
+ if (this.liveRegion.length == 0) {
|
|
|
+ this.liveRegion = $("<span>", {
|
|
|
+ role: "status",
|
|
|
+ "aria-live": "polite"
|
|
|
+ })
|
|
|
+ .addClass("select2-hidden-accessible")
|
|
|
+ .appendTo(document.body);
|
|
|
+ }
|
|
|
|
|
|
this.containerId="s2id_"+(opts.element.attr("id") || "autogen"+nextUid());
|
|
|
this.containerEventName= this.containerId
|