Skip to content

Commit

Permalink
Merge branch 'release/2.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
ercanozkaya committed Oct 2, 2014
2 parents 49ab1e1 + 74d56e3 commit f4aa84c
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 18 deletions.
2 changes: 1 addition & 1 deletion code/administrator/manifests/files/files_koowa.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<license>GNU GPLv3 - http://www.gnu.org/licenses/gpl.html</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomlatools.com</authorUrl>
<version>2.0.0</version>
<version>2.0.1</version>
<description></description>

<scriptfile>script.php</scriptfile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function jquery($config = array())
if (version_compare(JVERSION, '3.0', 'ge'))
{
JHtml::_('jquery.framework');
JHtml::_('script', 'media/koowa/com_koowa/js/koowa.jquery.js', false, false, false, false, false);
JHtml::_('script', 'media/koowa/com_koowa/js/koowa.kquery.js', false, false, false, false, false);
}
else $html .= parent::jquery($config);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ public function load($config = array())

if ($config->load_base)
{
if (!file_exists($template.'/disable-joomlatools-bootstrap')) {
if (!file_exists($template.'/disable-koowa-bootstrap.txt')) {
$html .= '<ktml:style src="media://koowa/com_koowa/css/bootstrap.css" />';
}
}
else
{
if (file_exists($template.'/enable-joomlatools-bootstrap')) {
if (file_exists($template.'/enable-koowa-bootstrap.txt')) {
$html .= '<ktml:style src="media://koowa/com_koowa/css/bootstrap.css" />';
}
}
Expand Down
2 changes: 1 addition & 1 deletion code/libraries/koowa/libraries/koowa.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class Koowa
*
* @var string
*/
const VERSION = '2.0.0';
const VERSION = '2.0.1';

/**
* The root path
Expand Down
12 changes: 2 additions & 10 deletions code/media/koowa/com_koowa/js/koowa.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,7 @@ if (!Function.prototype.bind) {
* https://github.com/ded/klass
* License MIT (c) Dustin Diaz & Jacob Thornton 2012
*/

/** @exports klass */
!function (name, context, definition) {
if (typeof define == 'function') define(definition)
//else if (typeof module != 'undefined') module.exports = definition() //@NOTE this breaks qunit
else context[name] = definition()
}('klass', this,
/** @exports klass */
function () {
var klass = (function () {
var context = this
, old = context.klass
, f = 'function'
Expand Down Expand Up @@ -139,7 +131,7 @@ if (!Function.prototype.bind) {
}

return klass
});
})();

$(function() {
$('.submittable').on('click.koowa', function(event){
Expand Down
2 changes: 1 addition & 1 deletion code/media/koowa/com_koowa/js/koowa.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion code/plugins/system/koowa/koowa.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<license>GNU GPLv3 - http://www.gnu.org/licenses/gpl.html</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomlatools.com</authorUrl>
<version>2.0.0</version>
<version>2.0.1</version>
<description />

<files folder="plugins/system">
Expand Down
2 changes: 1 addition & 1 deletion pkg_koowa.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<license>GNU GPLv3 - http://www.gnu.org/licenses/gpl.html</license>
<authorEmail>[email protected]</authorEmail>
<authorUrl>www.joomlatools.com</authorUrl>
<version>2.0.0</version>
<version>2.0.1</version>
<description></description>

<files>
Expand Down

0 comments on commit f4aa84c

Please sign in to comment.