Skip to content

Commit

Permalink
=
Browse files Browse the repository at this point in the history
  • Loading branch information
arikaim-repository committed Feb 15, 2020
1 parent c444c63 commit 8ca71c7
Show file tree
Hide file tree
Showing 17 changed files with 20 additions and 3 deletions.
1 change: 1 addition & 0 deletions form/fields/price/price.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
$(document).ready(function() {
arikaim.ui.button('.clear-price',function(element) {
var priceField = $(element).attr('price-field');
Expand Down
1 change: 1 addition & 0 deletions form/fields/slug/slug.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
$(document).ready(function() {
var slugSource = $('#slug').attr('slug-source');
var value = $('#' + slugSource).val();
Expand Down
1 change: 1 addition & 0 deletions head/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
{% set exclude = ['viewport','favicons','og','twitter'] %}
<head lang="{{ getLanguage() }}">
<meta name="robots" content="index, follow, all" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>{{ head.title }}</title>
<meta charset="{{ charset }}">
<base href="{{ base_url }}"/>
Expand Down
3 changes: 2 additions & 1 deletion message/error/error.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
"use strict";
$(document).ready(function() {
$('.message .close').on('click', function() {
$('.message .close').on('click',function() {
$(this).closest('.message').transition('fade');
});
});
1 change: 1 addition & 0 deletions message/warning/warning.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
$(document).ready(function() {
$('.warning .close').on('click', function() {
$(this).closest('.message').transition('fade');
Expand Down
1 change: 1 addition & 0 deletions modal/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @license http://www.arikaim.com/license
* http://www.arikaim.com
*/
"use strict";

function Modal() {
var self = this;
Expand Down
1 change: 1 addition & 0 deletions option/checkbox/checkbox.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
$(document).ready(function() {
$('.option-checkbox').checkbox({
onChecked: function() {
Expand Down
1 change: 1 addition & 0 deletions paginator/feeds/feeds.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
arikaim.events.on('paginator.load.page',function(result) {
$('#current_page').html(result.page);

Expand Down
1 change: 1 addition & 0 deletions paginator/paginator.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @license http://www.arikaim.com/license
* http://www.arikaim.com
*/
"use strict";

function Paginator() {
var self = this;
Expand Down
1 change: 1 addition & 0 deletions paginator/simple/simple.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
arikaim.events.on('paginator.load.page',function(result) {
$('#current_page').html(result.page);

Expand Down
1 change: 1 addition & 0 deletions policy/cookie/dialog/dialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @license http://www.arikaim.com/license
* http://www.arikaim.com
*/
"use strict";

function CookieDialog() {
var self = this;
Expand Down
1 change: 1 addition & 0 deletions popup/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @license http://www.arikaim.com/license
* http://www.arikaim.com
*/
"use strict";

function Popup() {
var self = this;
Expand Down
1 change: 1 addition & 0 deletions progress-bar/progress-bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* @license http://www.arikaim.com/license
* http://www.arikaim.com
*/
"use strict";

function ProgressBar() {
var self = this;
Expand Down
1 change: 1 addition & 0 deletions search/form/form.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
"use strict";
$(document).ready(function() {
$('.search-actions').dropdown();
});
3 changes: 2 additions & 1 deletion search/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @license http://www.arikaim.com/license
* http://www.arikaim.com
*/
"use strict";

function Search() {
var self = this;
Expand All @@ -16,7 +17,7 @@ function Search() {
allowAdditions: true
});

arikaim.ui.button(' .clear-search-form',function(element) {
arikaim.ui.button('.clear-search-form',function(element) {
arikaim.ui.form.clear(formId);
$(formId).form('clear');
return self.clear(namespace,function(result) {
Expand Down
3 changes: 2 additions & 1 deletion upload/upload.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @license http://www.arikaim.com/license
* http://www.arikaim.com
*/
"use strict";

function FileUpload(formId, options) {
var defaultIdleLabel = "Drag & Drop file or <span class='filepond--label-action'> Browse </span>";
Expand Down Expand Up @@ -75,5 +76,5 @@ function FileUpload(formId, options) {
});
};

this.init(formId, options);
this.init(formId,options);
}
1 change: 1 addition & 0 deletions view/type/type.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* @license http://www.arikaim.com/license
* http://www.arikaim.com
*/
"use strict";

function ViewType() {
var self = this;
Expand Down

0 comments on commit 8ca71c7

Please sign in to comment.