diff --git a/docs/pages/ajaxinclude.html b/docs/pages/ajaxinclude.html deleted file mode 100644 index fccb1452..00000000 --- a/docs/pages/ajaxinclude.html +++ /dev/null @@ -1,75 +0,0 @@ - - -
- - -A standard link with a href pointing to a local anchor (#foo) or external page (foo.html) will trigger a full animated page change via the AJAX nav system with the default transition.
-<a href="dialog.html">Link</a>
-
-
- A dialog is made by adding data-rel="dialog" to a link to display the page with an inset appearance and the default dialog transition.
<a href="dialog.html" data-rel="dialog">Link</a>
-
-
- A fetch link is created by adding the data-target attribute to a link. This tells the framework to not change pages and instead load the href into the target DOM element on the current page when the link is clicked. The target can be any jQuery selector (or restrict to ID only?).
<a href="dialog.html" data-target=".quote">
-
-
- The target method for a link can be specified by adding the data-method attribute to a link. This specifies whether to replace, append, prepend, or insert the content before or after the target element. By default, an external href will replace the target.
<a href="dialog.html" data-target=".quote" data-method="append">
-
-
- The content fragment from the loaded page can be specified. By default, the framework will load in the contents of the data-role="page" container, but it's possible to specify a what content from the page to pull into the target by adding a data-fragment attribute to the link with any jQuery selector.
<a href="dialog.html" data-target=".quote" data-fragment="#content">
-
-
- A breakpoint option will automatically load the fetch link if the screen width is larger than the specified value instead of waiting for the link to be clicked. The data-breakpoint attribute on the link specifies the min-width pixel value to load the link.
<a href="dialog.html" data-target=".quote" data-breakpoint="500">
-
-
-
- Similar to above but examples use local hrefs (#foo) and there isn't a need for a data-fragment attribute since we're already specifying that in the href.
-- - - Link - -“You will not apply my precept,” he said, shaking his head. “How often have I said to you that when you have eliminated the impossible, whatever remains, however improbable, must be the truth?”
- Arthur Conan Doyle - Sherlock Holmes: The Sign of the Four -
To be replaced.
-This is a regular page, styled as a dialog. To create a dialog, just link to a normal page and include a transition and data-rel="dialog" attribute.