Skip to content

Commit f974b44

Browse files
authored
Merge pull request #44 from joomdev/dev
Version 2.2.0 Updated
2 parents be4967c + 0493449 commit f974b44

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+24343
-19164
lines changed
Lines changed: 23 additions & 0 deletions
Loading
Lines changed: 20 additions & 0 deletions
Loading

astroid/astroid-framework/assets/js/astroid-framework.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,30 @@ astroidFramework.directive('astroidsocialprofiles', ['$http', function ($http) {
230230
}
231231
]);
232232

233+
astroidFramework.directive('astroidsassoverrides', ['$http', function () {
234+
return {
235+
restrict: 'A',
236+
scope: true,
237+
link: function ($scope, $element, $attrs) {
238+
$scope.overrides = AstroidSassOverrideVariables;
239+
$scope.addOverride = function () {
240+
var _overrides = $scope.overrides;
241+
_overrides.push({'variable': '', 'value': ''});
242+
$scope.overrides = _overrides;
243+
};
244+
$scope.removeOverride = function (_index) {
245+
var _c = confirm("Are you sure?");
246+
if (_c) {
247+
var _overrides = $scope.overrides;
248+
_overrides.splice(_index, 1);
249+
$scope.overrides = _overrides;
250+
}
251+
};
252+
}
253+
};
254+
}
255+
]);
256+
233257
astroidFramework.directive('dropzone', function () {
234258
return {
235259
restrict: 'A',

astroid/astroid-framework/assets/js/astroid.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

astroid/astroid-framework/assets/js/jquery.nicescroll.min.js

Lines changed: 3729 additions & 2 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)