Skip to content

Commit

Permalink
chore(all):src,samples updated for v15.1.0.37
Browse files Browse the repository at this point in the history
  • Loading branch information
karthickthangasamy committed Mar 1, 2017
1 parent 7a859d0 commit 25c6284
Show file tree
Hide file tree
Showing 118 changed files with 163 additions and 174 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ export class Expense {
}
updatechart(month) {
let dataManger = ej.DataManager({// eslint-disable-line new-cap
url: 'http://mvc.syncfusion.com/Services/api/expense?month=' + month,
url: 'http://js.syncfusion.com/demos/ejServices/api/expense/get?month=' + month,
offline: true,
requiresFormat: false
});
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export class Health {
constructor() {
this.dataManger = ej.DataManager({// eslint-disable-line new-cap
url: 'http://mvc.syncfusion.com/Services/api/Health/FoodInfo'
url: 'http://js.syncfusion.com/demos/ejServices/api/HealthTracker/Load'
});
this.showPopup = true;
this.sumColl = {};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export class BasicUse {
this.width = '100%';
this.fields = { text: 'ContactName', key: 'SupplierID' };
this.filterType = ej.filterType.StartsWith;
this.dataManger = ej.DataManager({ url: 'http://mvc.syncfusion.com/Services/Northwnd.svc/' }); // eslint-disable-line new-cap
this.dataManger = ej.DataManager({ url: 'http://js.syncfusion.com/demos/ejServices/wcf/NorthWind.svc/' }); // eslint-disable-line new-cap
this.query = ej.Query().from('Suppliers').select('SupplierID', 'ContactName'); // eslint-disable-line new-cap
}
}
3 changes: 2 additions & 1 deletion sample/src/samples/grid/remote-Data.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
export class RemoteData {
constructor() {
this.OrdersList = ej.DataManager({ // eslint-disable-line new-cap
url: 'http://mvc.syncfusion.com/Services/Northwnd.svc/Orders/'
url: 'http://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/',
crossDomain: true
});
}
}
Expand Down
2 changes: 1 addition & 1 deletion sample/src/samples/listbox/data-binding-remote.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ export class BasicUse {
constructor() {
// declaration
this.fields = { text: 'CustomerID' };
this.dataManger = ej.DataManager({url: 'http://mvc.syncfusion.com/Services/Northwnd.svc/'}); // eslint-disable-line new-cap
this.dataManger = ej.DataManager({url: 'http://js.syncfusion.com/demos/ejServices/wcf/NorthWind.svc/'}); // eslint-disable-line new-cap
// Query creation
this.query = ej.Query().from('Customers').take(10);// eslint-disable-line new-cap
}
Expand Down
2 changes: 1 addition & 1 deletion sample/src/samples/listbox/virtual-scrolling.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export class BasicUse {
constructor() {
this.fields = { text: 'CustomerID' };
this.dataManger = ej.DataManager({url: 'http://mvc.syncfusion.com/Services/Northwnd.svc/'}); // eslint-disable-line new-cap
this.dataManger = ej.DataManager({url: 'http://js.syncfusion.com/demos/ejServices/wcf/NorthWind.svc/'}); // eslint-disable-line new-cap
// Query creation
this.query = ej.Query().from('Customers'); // eslint-disable-line new-cap
}
Expand Down
2 changes: 1 addition & 1 deletion sample/src/samples/schedule/load-on-demand.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export class LoadOnDemand {
constructor() {
let dataManager = ej.DataManager({ //eslint-disable-line new-cap
url: 'http://mvc.syncfusion.com/OdataServices/api/ScheduleData/',
url: 'http://js.syncfusion.com/demos/ejServices/api/Schedule/LoadCurrentData',
crossDomain: true
});
this.Views = ['Day', 'Week', 'WorkWeek', 'Month'];
Expand Down
2 changes: 1 addition & 1 deletion sample/src/samples/schedule/print-and-export.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<tr>
<td>
<div class="upload">
<ej-uploadbox id="UploadDefault" e-save-url="http://js.syncfusion.com/ScheduleExport/api/JSScheduleExport/SaveDefault"
<ej-uploadbox id="UploadDefault" e-save-url="http://js.syncfusion.com/demos/ejServices/api/Schedule/Save"
e-extensions-allow= ".ics" e-height="30px" e-auto-upload="true" e-width="80px" e-button-text.bind="buttonText"
e-show-file-details="false" e-on-success.trigger="onComplete($event)" e-dialog-action.bind="dialogAction"></ej-uploadbox>
</div>
Expand Down
6 changes: 3 additions & 3 deletions sample/src/samples/schedule/print-and-export.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class PrintAndExport {
}
onExportClick(e) {
let obj = $('#Schedule1').data('ejSchedule');
obj.exportSchedule('http://js.syncfusion.com/ScheduleExport/api/JSScheduleExport/ICSExport', null, null);
obj.exportSchedule('http://js.syncfusion.com/demos/ejServices/api/Schedule/IcsExport', null, null);
e.detail.cancel = true;
}

Expand All @@ -25,15 +25,15 @@ export class PrintAndExport {
}
onPDFExportClick(e) {
let obj = $('#Schedule1').data('ejSchedule');
obj.exportSchedule('http://js.syncfusion.com/ScheduleExport/api/JSScheduleExport/PDFExport', null, null);
obj.exportSchedule('http://js.syncfusion.com/demos/ejServices/api/Schedule/PdfExport', null, null);
e.detail.cancel = true;
}
constructor() {
this.orientation = ['Vertical', 'Horizontal'];
this.buttonText = { browse: 'Import' };
this.dialogAction = { closeOnComplete: true };
let dataManager = ej.DataManager({ //eslint-disable-line new-cap
url: 'http://js.syncfusion.com/ScheduleExport/api/JSScheduleExport/GetScheduleData',
url: 'http://js.syncfusion.com/demos/ejServices/api/Schedule/LoadData',
crossDomain: true
});
this.AppointmentList = {
Expand Down
4 changes: 1 addition & 3 deletions sample/src/samples/schedule/remote-data.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
export class RemoteData {
constructor() {
let dataManager = ej.DataManager({ //eslint-disable-line new-cap
url: 'http://mvc.syncfusion.com/OdataServices/Northwnd.svc',
url: 'http://js.syncfusion.com/demos/ejServices/api/Schedule/LoadData',
crossDomain: true
});
let query = ej.Query().from('Events').take(10); //eslint-disable-line new-cap
this.AppointmentList = {
dataSource: dataManager,
query: query,
id: 'Id',
subject: 'Subject',
startTime: 'StartTime',
Expand Down
2 changes: 1 addition & 1 deletion src/currencytextbox/currencytextbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';

@customAttribute(`${constants.attributePrefix}currency-textbox`)
@generateBindables('ejCurrencyTextbox', ['cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
@generateBindables('ejCurrencyTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejCurrencyTextbox extends WidgetBase {
constructor(element) {
Expand Down
2 changes: 1 addition & 1 deletion src/datetimepicker/datetimepicker.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.datetimepicker.min';

@customAttribute(`${constants.attributePrefix}date-time-picker`)
@generateBindables('ejDateTimePicker', ['buttonText', 'cssClass', 'dateTimeFormat', 'dayHeaderFormat', 'depthLevel', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'headerFormat', 'height', 'htmlAttributes', 'interval', 'locale', 'maxDateTime', 'minDateTime', 'popupPosition', 'readOnly', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'startDay', 'startLevel', 'stepMonths', 'timeDisplayFormat', 'timeDrillDown', 'timePopupWidth', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@generateBindables('ejDateTimePicker', ['allowEdit', 'buttonText', 'cssClass', 'dateTimeFormat', 'dayHeaderFormat', 'depthLevel', 'enableAnimation', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'headerFormat', 'height', 'htmlAttributes', 'interval', 'locale', 'maxDateTime', 'minDateTime', 'popupPosition', 'readOnly', 'showOtherMonths', 'showPopupButton', 'showRoundedCorner', 'startDay', 'startLevel', 'stepMonths', 'timeDisplayFormat', 'timeDrillDown', 'timePopupWidth', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], ['value'], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejDateTimePicker extends WidgetBase {
constructor(element) {
Expand Down
2 changes: 1 addition & 1 deletion src/grid/column.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {Util} from '../common/util';

@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}column`)
@generateBindables('columns', ['clipMode', 'allowEditing', 'allowFiltering', 'allowGrouping', 'allowSorting', 'allowResizing', 'commands', 'cssClass', 'customAttributes', 'dataSource', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'editParams', 'editTemplate', 'editType', 'enableGroupByFormat', 'field', 'filterBarTemplate', 'foreignKeyField', 'foreignKeyValue', 'format', 'headerTemplateID', 'headerText', 'headerTextAlign', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'priority', 'showInColumnChooser', 'template', 'textAlign', 'tooltip', 'type', 'validationRules', 'visible', 'width'])
@generateBindables('columns', ['clipMode', 'allowEditing', 'allowFiltering', 'allowGrouping', 'allowSorting', 'allowResizing', 'commands', 'cssClass', 'customAttributes', 'dataSource', 'defaultValue', 'disableHtmlEncode', 'displayAsCheckBox', 'editParams', 'editTemplate', 'editType', 'enableGroupByFormat', 'field', 'filterBarTemplate', 'filterType', 'foreignKeyField', 'foreignKeyValue', 'format', 'headerTemplateID', 'headerText', 'headerTextAlign', 'headerTooltip', 'isFrozen', 'isIdentity', 'isPrimaryKey', 'priority', 'showInColumnChooser', 'template', 'textAlign', 'tooltip', 'type', 'validationRules', 'visible', 'width'])

export class Column {
@children(`${constants.elementPrefix}template`) template = [];
Expand Down
2 changes: 1 addition & 1 deletion src/grid/grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.grid.min';

@customElement(`${constants.elementPrefix}grid`)
@inlineView(`${constants.aureliaTemplateString}`)
@generateBindables('ejGrid', ['allowCellMerging', 'allowGrouping', 'allowKeyboardNavigation', 'allowFiltering', 'allowSorting', 'allowMultiSorting', 'allowPaging', 'allowReordering', 'allowResizeToFit', 'allowResizing', 'allowRowDragAndDrop', 'allowScrolling', 'allowSearching', 'allowSelection', 'allowTextWrap', 'allowMultipleExporting', 'commonWidth', 'gridLines', 'childGrid', 'columnLayout', 'columns', 'contextMenuSettings', 'cssClass', 'dataSource', 'detailsTemplate', 'editSettings', 'enableAltRow', 'enableAutoSaveOnSelectionChange', 'enableHeaderHover', 'enablePersistence', 'enableResponsiveRow', 'enableRowHover', 'enableRTL', 'enableTouch', 'exportToExcelAction', 'exportToPdfAction', 'exportToWordAction', 'filterSettings', 'groupSettings', 'isResponsive', 'keySettings', 'locale', 'minWidth', 'pageSettings', 'query', 'resizeSettings', 'rowTemplate', 'rowDropSettings', 'searchSettings', 'selectedRecords', 'selectedRowIndex', 'selectedRowIndices', 'selectionSettings', 'selectionType', 'scrollSettings', 'showColumnChooser', 'showStackedHeader', 'showSummary', 'sortSettings', 'stackedHeaderRows', 'summaryRows', 'textWrapSettings', 'toolbarSettings'], ['dataSource', 'selectedRowIndices'], {'enableRTL': 'enableRtl'})
@generateBindables('ejGrid', ['allowCellMerging', 'allowGrouping', 'allowKeyboardNavigation', 'allowFiltering', 'allowSorting', 'allowMultiSorting', 'allowPaging', 'allowReordering', 'allowResizeToFit', 'allowResizing', 'allowRowDragAndDrop', 'allowScrolling', 'allowSearching', 'allowSelection', 'allowTextWrap', 'allowMultipleExporting', 'commonWidth', 'gridLines', 'childGrid', 'columnLayout', 'columns', 'contextMenuSettings', 'cssClass', 'dataSource', 'detailsTemplate', 'editSettings', 'enableAltRow', 'enableAutoSaveOnSelectionChange', 'enableHeaderHover', 'enablePersistence', 'enableResponsiveRow', 'enableRowHover', 'enableRTL', 'enableTouch', 'enableToolbarItems', 'exportToExcelAction', 'exportToPdfAction', 'exportToWordAction', 'filterSettings', 'groupSettings', 'isResponsive', 'keySettings', 'locale', 'minWidth', 'pageSettings', 'query', 'resizeSettings', 'rowTemplate', 'rowDropSettings', 'searchSettings', 'selectedRecords', 'selectedRowIndex', 'selectedRowIndices', 'selectionSettings', 'selectionType', 'scrollSettings', 'showColumnChooser', 'showStackedHeader', 'showSummary', 'sortSettings', 'stackedHeaderRows', 'summaryRows', 'textWrapSettings', 'toolbarSettings'], ['dataSource', 'selectedRowIndices'], {'enableRTL': 'enableRtl'})
@inject(Element, TemplatingEngine)
export class ejGrid extends WidgetBase {
@children(`${constants.elementPrefix}column`) columns = [];
Expand Down
2 changes: 1 addition & 1 deletion src/map/layer.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {inlineView, customElement} from '../common/common';

@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}layer`)
@generateBindables('layers', ['bingMapType', 'bubbleSettings', 'dataSource', 'shapeDataPath', 'shapePropertyPath', 'enableMouseHover', 'enableSelection', 'key', 'labelSettings', 'layerType', 'legendSettings', 'mapItemsTemplate', 'markers', 'markerTemplate', 'selectedMapShapes', 'selectionMode', 'shapeData', 'shapeSettings', 'showMapItems', 'showTooltip', 'tooltipTemplate', 'urlTemplate'])
@generateBindables('layers', ['bingMapType', 'bubbleSettings', 'dataSource', 'shapeDataPath', 'shapePropertyPath', 'enableMouseHover', 'enableSelection', 'key', 'labelSettings', 'geometryType', 'layerType', 'legendSettings', 'mapItemsTemplate', 'markers', 'markerTemplate', 'selectedMapShapes', 'selectionMode', 'shapeData', 'shapeSettings', 'showMapItems', 'showTooltip', 'tooltipTemplate', 'urlTemplate'])

export class Layer {
}
Expand Down
2 changes: 1 addition & 1 deletion src/numerictextbox/numerictextbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';

@customAttribute(`${constants.attributePrefix}numeric-textbox`)
@generateBindables('ejNumericTextbox', ['cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
@generateBindables('ejNumericTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejNumericTextbox extends WidgetBase {
constructor(element) {
Expand Down
2 changes: 1 addition & 1 deletion src/percentagetextbox/percentagetextbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {customAttribute, inject} from '../common/common';
import 'syncfusion-javascript/Scripts/ej/web/ej.editor.min';

@customAttribute(`${constants.attributePrefix}percentage-textbox`)
@generateBindables('ejPercentageTextbox', ['cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
@generateBindables('ejPercentageTextbox', ['currencySymbol', 'cssClass', 'decimalPlaces', 'enabled', 'enablePersistence', 'enableRTL', 'enableStrictMode', 'groupSize', 'groupSeparator', 'height', 'htmlAttributes', 'incrementStep', 'locale', 'maxValue', 'minValue', 'name', 'negativePattern', 'positivePattern', 'readOnly', 'showRoundedCorner', 'showSpinButton', 'validateOnType', 'validationMessage', 'validationRules', 'value', 'watermarkText', 'width'], [], {'enableRTL': 'enableRtl'})
@inject(Element)
export class ejPercentageTextbox extends WidgetBase {
constructor(element) {
Expand Down
2 changes: 1 addition & 1 deletion src/pivotgrid/pivotgrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import 'syncfusion-javascript/Scripts/ej/web/ej.pivotgrid.min';

@customElement(`${constants.elementPrefix}pivot-grid`)
@inlineView(`${constants.aureliaTemplateString}`)
@generateBindables('ejPivotGrid', ['analysisMode', 'cssClass', 'pivotTableFieldListID', 'dataSource', 'valueSortSettings', 'frozenHeaderSettings', 'customObject', 'collapsedMembers', 'enableCellContext', 'enableCellSelection', 'enableDrillThrough', 'enableCellDoubleClick', 'enableCellEditing', 'enableCollapseByDefault', 'enableColumnGrandTotal', 'enableConditionalFormatting', 'enableDeferUpdate', 'enableGroupingBar', 'enableGrandTotal', 'enableJSONRendering', 'enablePivotFieldList', 'enableRowGrandTotal', 'enableRTL', 'enableToolTip', 'enableToolTipAnimation', 'enableColumnResizing', 'enableVirtualScrolling', 'enablePaging', 'hyperlinkSettings', 'isResponsive', 'jsonRecords', 'layout', 'locale', 'operationalMode', 'serviceMethodSettings', 'url'], [], {'pivotTableFieldListID': 'pivotTableFieldListId', 'enableRTL': 'enableRtl'})
@generateBindables('ejPivotGrid', ['analysisMode', 'cssClass', 'pivotTableFieldListID', 'dataSource', 'valueSortSettings', 'frozenHeaderSettings', 'customObject', 'collapsedMembers', 'enableCellContext', 'enableCellSelection', 'enableDrillThrough', 'enableCellDoubleClick', 'enableCellEditing', 'enableCollapseByDefault', 'enableColumnGrandTotal', 'enableConditionalFormatting', 'enableAdvancedFilter', 'enableDeferUpdate', 'enableGroupingBar', 'enableGrandTotal', 'enableJSONRendering', 'enablePivotFieldList', 'enableRowGrandTotal', 'enableRTL', 'enableToolTip', 'enableToolTipAnimation', 'enableColumnResizing', 'enableVirtualScrolling', 'enablePaging', 'hyperlinkSettings', 'isResponsive', 'jsonRecords', 'layout', 'locale', 'operationalMode', 'serviceMethodSettings', 'url'], [], {'pivotTableFieldListID': 'pivotTableFieldListId', 'enableRTL': 'enableRtl'})
@inject(Element)
export class ejPivotGrid extends WidgetBase {
constructor(element) {
Expand Down
2 changes: 1 addition & 1 deletion src/spreadsheet/sheet.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {inlineView, customElement} from '../common/common';

@inlineView(`${constants.aureliaTemplateString}`)
@customElement(`${constants.elementPrefix}sheet`)
@generateBindables('sheets', ['border', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell'])
@generateBindables('sheets', ['border', 'cellTypes', 'cFormatRule', 'colCount', 'columnWidth', 'dataSource', 'fieldAsColumnHeader', 'headerStyles', 'hideColumns', 'hideRows', 'mergeCells', 'primaryKey', 'query', 'rangeSettings', 'rowCount', 'rows', 'showGridlines', 'showHeader', 'showHeadings', 'startCell'])

export class Sheet {
}
Expand Down
4 changes: 2 additions & 2 deletions vendors/css/web/bootstrap-theme/ej.theme.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendors/css/web/bootstrap-theme/ej.web.all.min.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@import url("../ej.widgets.core.bootstrap.min.css");
@import url("ej.theme.min.css");
@import url("./ej.theme.min.css");

4 changes: 2 additions & 2 deletions vendors/css/web/ej.widgets.core.bootstrap.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion vendors/scripts/ej/common/ej.core.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendors/scripts/ej/common/ej.data.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendors/scripts/ej/common/ej.draggable.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendors/scripts/ej/common/ej.globalize.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 25c6284

Please sign in to comment.