This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
========================================= | |
js | |
============================ | |
$scope.arrowShift; | |
$scope.$watch(function () { | |
return $mdMedia('sm'); | |
}, function (sm) { | |
if (sm) { | |
$scope.arrowShift = 35; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Svet - русскоязычный новостной портал Чикаго</title> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="description" content=""> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"/> | |
<meta name="referrer" content="origin"/> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
form(name='articleForm' ng-submit="saveArticle(false,articleForm.$valid)" flow-init novalidate sv-form-val) | |
.bgc-grey-200.p(layout='row' layout-align="space-around center") | |
button.btn.btn--m.btn--teal.btn--flat.tc-teal-300(lx-ripple='' type='submit') | |
i.fa.fa-save.fa-fw   | |
| Save | |
sv-lumx-button(btn-size="m" btn-color="red" text-color="red-300" btn-type="flat" btn-title="cancel" icon-type="fa" | |
icon-name="fa-close" btn-url="app.home" | |
method-click='cancelArticle(true)') | |
div(class='p+') | |
div(layout='row', layout-sm='column' layout-align='end') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div(flex-container='column') | |
.card | |
div(class='p+') | |
span.display-block.fs-title.mb {{title|translate}} | |
.divider.divider--dark | |
form.mt(name='signUpForm' novalidate sv-form-val) | |
div(flex-container='column' flex) | |
div(flex-item='') | |
lx-text-field(label='{{name|translate}}') | |
input(type='text' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$scope.$on('close:dropdown', function () { | |
closeDropdownMenu(); | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
@license textAngular | |
Author : Austin Anderson | |
License : 2013 MIT | |
Version 1.3.7 | |
See README.md or https://github.com/fraywing/textAngular/wiki for requirements and use. | |
*/ | |
.ta-hidden-input { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div(flex-container='column') | |
.card(class='p+') | |
span.display-block.fs-title.mb Log In to Your Account | |
form.mt(flex-container='column' name="loginForm") | |
div(flex-container='row') | |
div(flex-item='') | |
lx-text-field(label='Email / Электронный Адрес', icon='email') | |
input(type='email', ng-model='login.user.email') | |
div(flex-container='row') | |
div(flex-item='') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
LumX v0.3.24 | |
(c) 2014-2015 LumApps http://ui.lumapps.com | |
License: MIT | |
*/ | |
/* global angular */ | |
angular.module('lumx.utils', [ | |
'lumx.utils.transclude', | |
'lumx.utils.transclude-replace' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.directive('lxDropdownToggle', function() | |
{ | |
return { | |
restrict: 'A', | |
require: '^lxDropdown', | |
templateUrl: 'dropdown-toggle.html', | |
replace: true, | |
transclude: true, | |
link: function(scope, element, attrs, ctrl) | |
{ |