mirror of
https://github.com/Mibew/CanteenHTML5.git
synced 2024-11-15 00:34:11 +03:00
Fixed docs, bumped version
This commit is contained in:
parent
9c3888aef3
commit
48ded16c2f
2
LICENSE
2
LICENSE
@ -1,6 +1,6 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2013 Matt Karl
|
||||
Copyright (c) 2014 Matt Karl
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
|
@ -10,4 +10,4 @@ docs.helpers=${docs.themedir}/path.js
|
||||
git=git
|
||||
git.docs=gh-pages
|
||||
git.master=master
|
||||
version=1.0.1
|
||||
version=1.1.1
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "canteen/html5",
|
||||
"description" : "Create dynamic, valid HTML5 markup with a simple an intuitive PHP API",
|
||||
"version" : "1.1.0",
|
||||
"version" : "1.1.1",
|
||||
"type": "library",
|
||||
"keywords": ["html5", "markup", "document", "html", "tags"],
|
||||
"license": "MIT",
|
||||
|
@ -9,10 +9,10 @@ namespace Canteen\HTML5
|
||||
* Represents a set of HTML tags without a wrapper.
|
||||
* Do not initiate this class directly, use the `html()` function:
|
||||
*
|
||||
* $div = html('container');
|
||||
* $div = html('fragment');
|
||||
*
|
||||
* @class UntaggedContainer
|
||||
* @extends Node
|
||||
* @class Fragment
|
||||
* @extends NodeContainer
|
||||
* @constructor
|
||||
* @param {Node|Array} [children=null] The collection of children or single child
|
||||
*/
|
||||
@ -35,7 +35,6 @@ namespace Canteen\HTML5
|
||||
{
|
||||
$buffer .= $child->__toString();
|
||||
}
|
||||
|
||||
return $buffer;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user