copy README from uikit repo for typedoc porposes and quick update to documentation comments

This commit is contained in:
Giovanni Silva
2015-10-17 16:50:59 -03:00
parent d1601626fd
commit dc2c33d3fa
3 changed files with 111 additions and 3 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
/// <reference path="uikit.d.ts" />
import StickyOptions = UIkit.StickyOptions;
function testModal() {
UIkit.modal.alert("Attention!");
UIkit.modal.confirm("Are you sure?", function () {
@@ -30,7 +30,7 @@ function testLightBox() {
var element = "#group";
var lightbox = UIkit.lightbox(element, {/* options */});
var lightbox2 = UIkit.lightbox.create([
{'source': 'http://url/to/video.mp4', 'type': 'video'},
{source: 'http://url/to/video.mp4', 'type': 'video'},
{'source': 'http://url/to/image.jpg', 'type': 'image'}
]);
lightbox2.show();