Skip to content

Commit

Permalink
Update SDK to 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dvorapa committed May 7, 2015
1 parent 8ae0763 commit 2fbd3be
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions lib/src/dialog_class.dart
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ class Dialog {
Dialog(this.content, this.title, [this.cancelable = false,
this.cancelName = "Cancel", this.okName = "OK"]) {
if (querySelectorAll(
"[href*='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css']").isEmpty) {
"[href*='//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css']").isEmpty) {
LinkElement link = new LinkElement()
..href =
"https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"
"//maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"
..rel = "stylesheet"
..type = "text/css";
document.querySelector("head").insertAdjacentElement("beforeEnd", link);
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ description: Modern alert, confirm and prompt dialog implementation
author: Pavel Dvořák
homepage: https://github.com/dvorapa/dialog-dart
environment:
sdk: ">=1.9.3 <2.0.0"
sdk: ">=1.10.0 <2.0.0"
dependencies:
browser: ">=0.10.0 <0.11.0"
browser: ">=0.10.0 <0.11.0"
2 changes: 1 addition & 1 deletion web/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -71,4 +71,4 @@ <H3>dialog.dart</H3>
<Script Type="application/dart" Src="index.dart"></Script>
<Script Src="packages/browser/dart.js"></Script>
</Body>
</Html>
</Html>

0 comments on commit 2fbd3be

Please sign in to comment.